Skip to content

Commit 55346f6

Browse files
committed
Remove unused type ignore comment
1 parent b8d3f70 commit 55346f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/stubgenc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ def generate_property_stub(
765765

766766
def get_type_fullname(self, typ: type) -> str:
767767
"""Given a type, return a string representation"""
768-
if typ is Any: # type: ignore[comparison-overlap]
768+
if typ is Any:
769769
return "Any"
770770
typename = getattr(typ, "__qualname__", typ.__name__)
771771
module_name = self.get_obj_module(typ)

0 commit comments

Comments
 (0)