Posts by Nicolas Medeiros Thiesen • 1 point
1 post
-
0
votes0
answers135
viewsQ: I cannot run the code because Pycharm says that the App class was not created
Pycharm says the App class has not been set, but it doesn’t make any sense since I created the App class. from tkinter import * class App: def __init__(self,master): frame = Frame(master)…