summaryrefslogtreecommitdiff
path: root/Lib/idlelib/SearchDialog.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-05-14 18:10:50 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2015-05-14 18:10:50 -0400
commit2733618fd933bebc5a1c33437135b2cc3aacb018 (patch)
tree646906cf0e738c2f296198073f9aaf9a264009dc /Lib/idlelib/SearchDialog.py
parent82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe (diff)
downloadcpython-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.py2
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):