mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
9 lines
118 B
Python
9 lines
118 B
Python
import abc
|
|
|
|
class A1(abc.ABC):
|
|
@abc.abstractmethod
|
|
def m1(self):
|
|
pass
|
|
|
|
class A2(A1, abc.ABC):
|
|
pass |