Skip to content

Commit 795baca

Browse files
committed
Merge branch 'issue-8624-refactor' of https://github.com/lsrafael13/mypy into issue-8624-refactor
2 parents 0f9e25e + 1f1bc26 commit 795baca

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

mypy/checkpattern.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@
2929
)
3030
from mypy.plugin import Plugin
3131
from mypy.subtypes import is_subtype
32-
from mypy.typeops import coerce_to_literal, try_getting_str_literals_from_type, tuple_fallback
32+
from mypy.typeops import (
33+
coerce_to_literal,
34+
try_getting_str_literals_from_type,
35+
tuple_fallback,
36+
)
3337
from mypy.types import (
3438
AnyType,
3539
Instance,

mypy/plugins/attrs.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@
5656
)
5757
from mypy.server.trigger import make_wildcard_trigger
5858
from mypy.state import state
59-
from mypy.typeops import get_type_vars, map_type_from_supertype, type_object_type
59+
from mypy.typeops import (
60+
get_type_vars,
61+
map_type_from_supertype,
62+
type_object_type,
63+
)
6064
from mypy.types import (
6165
AnyType,
6266
CallableType,

0 commit comments

Comments
 (0)