basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

`explicit-override` shouldn't apply to dunders directly from `object`

Open KotlinIsland opened this issue 2 years ago • 0 comments

class A:
    def __str__(self): ...  # don't expect error
    
class B(A):
    def __str__(self): ...  # expect error

KotlinIsland avatar Aug 18 '23 02:08 KotlinIsland