mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
9 lines
151 B
Python
9 lines
151 B
Python
from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
class Parent(object):
|
|
__metaclass__ = ABCMeta
|
|
|
|
@abstractmethod
|
|
def my_method2(self):
|
|
pass |