diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-05-14 18:10:50 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-05-14 18:10:50 -0400 |
commit | 2733618fd933bebc5a1c33437135b2cc3aacb018 (patch) | |
tree | 646906cf0e738c2f296198073f9aaf9a264009dc /Lib/idlelib/SearchDialog.py | |
parent | 82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe (diff) | |
download | cpython-git-2733618fd933bebc5a1c33437135b2cc3aacb018.tar.gz |
idlelib: remove unused names and imports (one is a duplicate import).
Diffstat (limited to 'Lib/idlelib/SearchDialog.py')
-rw-r--r-- | Lib/idlelib/SearchDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/SearchDialog.py b/Lib/idlelib/SearchDialog.py index 38408b8dea..77ef7b9a82 100644 --- a/Lib/idlelib/SearchDialog.py +++ b/Lib/idlelib/SearchDialog.py @@ -23,7 +23,7 @@ def find_selection(text): class SearchDialog(SearchDialogBase): def create_widgets(self): - f = SearchDialogBase.create_widgets(self) + SearchDialogBase.create_widgets(self) self.make_button("Find Next", self.default_command, 1) def default_command(self, event=None): |