Skip to content

Commit 431e33f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5baea2e commit 431e33f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mypy/errorcodes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ def __hash__(self) -> int:
6060
"call-overload", "Check that an overload variant matches arguments", "General"
6161
)
6262
VALID_TYPE: Final = ErrorCode("valid-type", "Check that type (annotation) is valid", "General")
63-
NONETYPE_TYPE: Final = ErrorCode("nonetype-type", "Check that type (annotation) is not NoneType", "General")
63+
NONETYPE_TYPE: Final = ErrorCode(
64+
"nonetype-type", "Check that type (annotation) is not NoneType", "General"
65+
)
6466
VAR_ANNOTATED: Final = ErrorCode(
6567
"var-annotated", "Require variable annotation if type can't be inferred", "General"
6668
)

0 commit comments

Comments
 (0)