We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd32701 commit 77e595eCopy full SHA for 77e595e
mypy/messages.py
@@ -97,7 +97,7 @@
97
get_proper_types,
98
)
99
from mypy.typetraverser import TypeTraverserVisitor
100
-from mypy.util import plural_s, unmangle, get_qualified_name
+from mypy.util import get_qualified_name, plural_s, unmangle
101
102
TYPES_FOR_UNIMPORTED_HINTS: Final = {
103
"typing.Any",
mypy/util.py
@@ -954,5 +954,3 @@ def get_qualified_name(class_name: str) -> str:
954
if inspect.isclass(cls):
955
return f"{module.__name__}.{class_name}"
956
return class_name
957
-
958
0 commit comments