So I have a file structure resembling this
src
|--- app
|--- __init__.py
|--- calc.py
|--- assets
|--- main.py
|--- environment.yml
In __init__.py
I just have
print('Importing app...")
and calc.py
has
from tkinter import Tk, Frame, Label
class App(Tk):
def __init__():
super().__init__()
Label(self, text='Hello, World!').pack()
and finally in main.py
import app
print(dir(app))
However, app
only has
['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__']
Where is my App class?