mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
9 lines
133 B
Python
9 lines
133 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class A1(ABC):
|
|
@abstractmethod
|
|
def m1(self):
|
|
pass
|
|
|
|
class A<caret>2(A1):
|
|
pass |