diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-01-16 21:04:18 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-01-16 21:04:18 +0100 |
commit | b81d9ec9ffdb93cf988e4f74c3f4680340ff184f (patch) | |
tree | ee4a606286019b692bb5606abece598e1d1df499 /languages/python/app_templates/pytk | |
parent | 2e6682f7d5d9247244429a117954488816f8450c (diff) | |
download | tdevelop-b81d9ec9ffdb93cf988e4f74c3f4680340ff184f.tar.gz tdevelop-b81d9ec9ffdb93cf988e4f74c3f4680340ff184f.zip |
Drop python2 support.r14.1.0
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'languages/python/app_templates/pytk')
-rw-r--r-- | languages/python/app_templates/pytk/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages/python/app_templates/pytk/app.py b/languages/python/app_templates/pytk/app.py index 39f4aa84..d86508cf 100644 --- a/languages/python/app_templates/pytk/app.py +++ b/languages/python/app_templates/pytk/app.py @@ -1,4 +1,4 @@ -from Tkinter import * +from tkinter import * widget = Label(None, text='Hello world!') widget.pack() widget.mainloop() |