remove useless file

This commit is contained in:
Mylloon 2021-11-25 20:53:52 +01:00
parent 5482c0d761
commit d89a57eccf

13
test.py
View file

@ -1,13 +0,0 @@
from tkinter import *
ws = Tk()
frame = Frame(ws)
x = Frame(frame)
imgs = []
for i in range(0, 10):
imgs.append(PhotoImage(file='img/defaut.gif'))
Label(x, image=imgs[i]).grid()
x.grid()
frame.grid()
ws.mainloop()