init
This commit is contained in:
24
neko_demo_impl/modules/dd.py
Normal file
24
neko_demo_impl/modules/dd.py
Normal file
@@ -0,0 +1,24 @@
|
||||
from neko_demo_standard.__internal.some_internal_logic_mixins import (
|
||||
FirstAbstractMixin,
|
||||
SecondAbstractMixin
|
||||
)
|
||||
from neko_demo_standard.neko.types import SomeDemoClass
|
||||
|
||||
|
||||
class FirstMixin(FirstAbstractMixin):
|
||||
def first_method(self):
|
||||
print('first')
|
||||
|
||||
|
||||
class SecondMixin(SecondAbstractMixin):
|
||||
def second_method(self):
|
||||
print('second')
|
||||
|
||||
|
||||
class RSomeDemoClass(FirstMixin, SecondMixin, SomeDemoClass):
|
||||
pass
|
||||
|
||||
|
||||
SomeDemoClass = RSomeDemoClass
|
||||
|
||||
__all__ = ['SomeDemoClass']
|
||||
Reference in New Issue
Block a user