mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-16 13:35:04 +08:00
black: enable skip_magic_trailing_comma (#5252)
* black: enable skip_magic_trailing_comma * Remove spurious commas
This commit is contained in:
@@ -4,15 +4,9 @@ from typing import Any, Optional, Tuple
|
||||
PY2: bool
|
||||
PY3: bool
|
||||
WIN: bool
|
||||
string_types: Tuple[
|
||||
str,
|
||||
]
|
||||
integer_types: Tuple[
|
||||
int,
|
||||
]
|
||||
class_types: Tuple[
|
||||
type,
|
||||
]
|
||||
string_types: Tuple[str]
|
||||
integer_types: Tuple[int]
|
||||
class_types: Tuple[type]
|
||||
text_type = str
|
||||
binary_type = bytes
|
||||
long = int
|
||||
|
||||
Reference in New Issue
Block a user