Skip to content

Commit aec6a87

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

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

mypy/fastparse.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@
33
import re
44
import sys
55
import warnings
6-
from collections.abc import Sequence
7-
from typing import Any, Callable, Final, Iterable, Literal, Optional, TypeVar, Union, cast, overload
6+
from collections.abc import Iterable, Sequence
7+
from typing import (
8+
Any,
9+
Callable,
10+
Final,
11+
Literal,
12+
Optional,
13+
TypeVar,
14+
Union,
15+
cast,
16+
overload,
17+
)
818

919
from mypy import defaults, errorcodes as codes, message_registry
1020
from mypy.errors import Errors

0 commit comments

Comments
 (0)