Closed as not planned
Description
Right now this code is not an error:
class A:
def some(self) -> int: ...
class B(A):
def some(self) -> int: ...
But, it is not a good style. I propose to add a check for this.
Related python/typeshed#7073
Right now this code is not an error:
class A:
def some(self) -> int: ...
class B(A):
def some(self) -> int: ...
But, it is not a good style. I propose to add a check for this.
Related python/typeshed#7073