Files
MementoMori/kivy/tests/pyinstaller/simple_widget/main.py
thatscringebro abd15f28b6 Ajout du GUI
2022-08-08 16:31:52 -04:00

13 lines
180 B
Python

from project.widget import MyWidget
if __name__ == '__main__':
w = MyWidget()
assert w.x == w.y
w.y = 868
assert w.x == 868
w.y = 370
assert w.x == 370