black: enable skip_magic_trailing_comma (#5252)

* black: enable skip_magic_trailing_comma

* Remove spurious commas
This commit is contained in:
Sebastian Rittau
2021-04-27 17:32:32 +02:00
committed by GitHub
parent b9937184ed
commit 4ac3ccad45
25 changed files with 44 additions and 236 deletions
+3 -9
View File
@@ -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