Update boom.py/boom.py

This commit is contained in:
2025-11-03 19:12:32 +00:00
parent 8bedea387a
commit 0c2257a1f5

View File

@@ -5,6 +5,7 @@ class App:
root.title("oh hey your computer go boom now")
root.geometry("900x700")
root.minsize(650, 500)
idk(self.root)
def idk(self):
while True:
@@ -14,7 +15,6 @@ class App:
def main():
root = tk.Tk()
app = App(root)
App.idk()
root.mainloop()
if __name__ == "__main__":