mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
12 lines
242 B
Python
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 |