Skip to content

Commit ef9f650

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

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

mypy/errors.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@
66
from collections import defaultdict
77
from collections.abc import Callable, Iterable, Iterator
88
from itertools import chain
9-
from typing import Callable, Final, NamedTuple, Literal, NoReturn, TextIO, TypeAlias as _TypeAlias, TypeVar
9+
from typing import (
10+
Final,
11+
Literal,
12+
NamedTuple,
13+
NoReturn,
14+
TextIO,
15+
TypeAlias as _TypeAlias,
16+
TypeVar,
17+
)
18+
1019
from mypy import errorcodes as codes
1120
from mypy.error_formatter import ErrorFormatter
1221
from mypy.errorcodes import IMPORT, IMPORT_NOT_FOUND, IMPORT_UNTYPED, ErrorCode, mypy_error_codes

0 commit comments

Comments
 (0)