mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
11 lines
236 B
Python
11 lines
236 B
Python
from abc import ABC, abstractproperty
|
|
|
|
|
|
class Base(ABC):
|
|
@abstractproperty
|
|
def some_method(self):
|
|
pass
|
|
|
|
|
|
class <weak_warning descr="Class Sub must implement all abstract methods">S<caret>ub</weak_warning>(Base):
|
|
pass |