Files
openide/python/testData/inspections/ImplementAbstractProperty1.py

12 lines
242 B
Python

from abc import ABC, abstractproperty
class Base(ABC):
@abstract
@property
def some_method(self):
pass
class <weak_warning descr="Class Sub must implement all abstract methods">S<caret>ub</weak_warning>(Base):
pass