From 2733618fd933bebc5a1c33437135b2cc3aacb018 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Thu, 14 May 2015 18:10:50 -0400 Subject: idlelib: remove unused names and imports (one is a duplicate import). --- Lib/idlelib/SearchDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/SearchDialog.py') 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): -- cgit v1.2.1