Skip to content

Commit 77e595e

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

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

mypy/messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
get_proper_types,
9898
)
9999
from mypy.typetraverser import TypeTraverserVisitor
100-
from mypy.util import plural_s, unmangle, get_qualified_name
100+
from mypy.util import get_qualified_name, plural_s, unmangle
101101

102102
TYPES_FOR_UNIMPORTED_HINTS: Final = {
103103
"typing.Any",

mypy/util.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -954,5 +954,3 @@ def get_qualified_name(class_name: str) -> str:
954954
if inspect.isclass(cls):
955955
return f"{module.__name__}.{class_name}"
956956
return class_name
957-
958-

0 commit comments

Comments
 (0)