add __init__ files
This commit is contained in:
3
main.py
Normal file
3
main.py
Normal file
@@ -0,0 +1,3 @@
|
||||
hello_world = lambda: "Hello, World!"
|
||||
|
||||
print(hello_world())
|
||||
1
src/logic/__init__.py
Normal file
1
src/logic/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
__help__ = "This package contains the logic of the application."
|
||||
1
src/ui/__init__.py
Normal file
1
src/ui/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from .sources
|
||||
2
src/ui/sources/__init__.py
Normal file
2
src/ui/sources/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# all .ui files and their corresponding python files are stored here.
|
||||
# The corresponding classes used in the program are defined here and used in the ui dir.
|
||||
Reference in New Issue
Block a user