This commit is contained in:
hhh
2024-02-02 22:41:44 +02:00
commit 81f77f8bc3
11 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1 @@
pass

View File

@@ -0,0 +1,4 @@
from ..modules.d import DemoInterface
__all__ = ['DemoInterface']

View File

@@ -0,0 +1,10 @@
from ..modules.dd import SomeDemoClass
from ..modules.ddd import SomeOtherDemoClass
__all__ = ['SomeDemoClass', 'SomeOtherDemoClass']
"""
Here, modules can be imported from internals of implementation, but they must be
present in the scope of the same (as in standard) file
"""