diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-13 14:28:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 14:28:41 (GMT) |
commit | 259dd71c32a42708a2800c72898e2664a33fda9c (patch) | |
tree | 5c9a1e367ccc37526054a30867a14db9ad45430a /Lib/tkinter/commondialog.py | |
parent | 65ac273280fa909f42dd78f3da634e6669e2b63d (diff) | |
download | cpython-259dd71c32a42708a2800c72898e2664a33fda9c.zip cpython-259dd71c32a42708a2800c72898e2664a33fda9c.tar.gz cpython-259dd71c32a42708a2800c72898e2664a33fda9c.tar.bz2 |
gh-84623: Remove unused imports in stdlib (#93773)
Diffstat (limited to 'Lib/tkinter/commondialog.py')
-rw-r--r-- | Lib/tkinter/commondialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/commondialog.py b/Lib/tkinter/commondialog.py index e595c99..86f5387 100644 --- a/Lib/tkinter/commondialog.py +++ b/Lib/tkinter/commondialog.py @@ -10,7 +10,7 @@ __all__ = ["Dialog"] -from tkinter import Frame, _get_temp_root, _destroy_temp_root +from tkinter import _get_temp_root, _destroy_temp_root class Dialog: |