Update boom.py/boom.py
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import tkinter as tk
|
import tkinter as tk
|
||||||
class app:
|
class App:
|
||||||
def __init__(self, root):
|
def __init__(self, root):
|
||||||
self.root = root
|
self.root = root
|
||||||
root.title("oh hey your computer go boom now")
|
root.title("oh hey your computer go boom now")
|
||||||
@@ -14,6 +14,7 @@ class app:
|
|||||||
def main():
|
def main():
|
||||||
root = tk.Tk()
|
root = tk.Tk()
|
||||||
app = app(root)
|
app = app(root)
|
||||||
|
app.idk()
|
||||||
root.mainloop()
|
root.mainloop()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
Reference in New Issue
Block a user