From 6d38ca44a7558a4911b53466a816079906264a30 Mon Sep 17 00:00:00 2001 From: superdimensional Date: Tue, 27 Apr 2021 03:47:11 -0400 Subject: [PATCH] formated code --- ben10.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ben10.py b/ben10.py index 16745c5..670f589 100644 --- a/ben10.py +++ b/ben10.py @@ -3,14 +3,16 @@ from tkinter import * root = Tk() root.title("Omnitrix") -root.attributes('-fullscreen',True) +root.attributes('-fullscreen', True) count = 0 + def count_up(): global count count += 1 print(count) - + + root.geometry("640x480") root.configure(bg="#70b607") @@ -21,4 +23,4 @@ omnitrix_button = Button(root, image=omnitrix, bg="#70b607", omnitrix_button.place(relx=0.5, rely=0.5, anchor=CENTER) -root.mainloop() \ No newline at end of file +root.mainloop()