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 b8d3f70 commit 55346f6Copy full SHA for 55346f6
mypy/stubgenc.py
@@ -765,7 +765,7 @@ def generate_property_stub(
765
766
def get_type_fullname(self, typ: type) -> str:
767
"""Given a type, return a string representation"""
768
- if typ is Any: # type: ignore[comparison-overlap]
+ if typ is Any:
769
return "Any"
770
typename = getattr(typ, "__qualname__", typ.__name__)
771
module_name = self.get_obj_module(typ)
0 commit comments