summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ttk
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2023-03-08 11:45:38 (GMT)
committerGitHub <noreply@github.com>2023-03-08 11:45:38 (GMT)
commit401d7a7f009ca2e282b1a0d1b880dc602afd39dc (patch)
tree654bd90d629a163295682e5e9f3c3aad8d047143 /Lib/test/test_ttk
parent7d801f245e2021d19daff105ce722f22aa844391 (diff)
downloadcpython-401d7a7f009ca2e282b1a0d1b880dc602afd39dc.zip
cpython-401d7a7f009ca2e282b1a0d1b880dc602afd39dc.tar.gz
cpython-401d7a7f009ca2e282b1a0d1b880dc602afd39dc.tar.bz2
gh-102515: Remove unused imports in the `Lib/` directory (#102516)
Diffstat (limited to 'Lib/test/test_ttk')
-rw-r--r--Lib/test/test_ttk/test_widgets.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_ttk/test_widgets.py b/Lib/test/test_ttk/test_widgets.py
index 6f47ccb..79d65b4 100644
--- a/Lib/test/test_ttk/test_widgets.py
+++ b/Lib/test/test_ttk/test_widgets.py
@@ -8,8 +8,7 @@ from test.test_ttk_textonly import MockTclObj
from test.test_tkinter.support import (AbstractTkTest, tcl_version, get_tk_patchlevel,
simulate_mouse_click, AbstractDefaultRootTest)
from test.test_tkinter.widget_tests import (add_standard_options,
- AbstractWidgetTest, StandardOptionsTests, IntegerSizeTests, PixelSizeTests,
- setUpModule)
+ AbstractWidgetTest, StandardOptionsTests, IntegerSizeTests, PixelSizeTests)
requires('gui')
@@ -50,7 +49,6 @@ class StandardTtkOptionsTests(StandardOptionsTests):
widget2 = self.create(class_='Foo')
self.assertEqual(widget2['class'], 'Foo')
# XXX
- pass
class WidgetTest(AbstractTkTest, unittest.TestCase):