diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2022-09-17 21:53:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-17 21:53:23 (GMT) |
commit | aa671b48d62a00c5ab87fb102be15dd5eeac84dd (patch) | |
tree | 5ae8f83f97079ca71f76521c358c29921ece21df /Lib/idlelib/idle_test/test_text.py | |
parent | 487135a396a504482ae3a7e9c7f80a44627a5a3f (diff) | |
download | cpython-aa671b48d62a00c5ab87fb102be15dd5eeac84dd.zip cpython-aa671b48d62a00c5ab87fb102be15dd5eeac84dd.tar.gz cpython-aa671b48d62a00c5ab87fb102be15dd5eeac84dd.tar.bz2 |
gh-87179: Fix more IDLE class headers (#96899)
Remove unneeded '(object)' and '()'.
Diffstat (limited to 'Lib/idlelib/idle_test/test_text.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_text.py b/Lib/idlelib/idle_test/test_text.py index 0f31179..43a9ba0 100644 --- a/Lib/idlelib/idle_test/test_text.py +++ b/Lib/idlelib/idle_test/test_text.py @@ -6,7 +6,7 @@ import unittest from test.support import requires from _tkinter import TclError -class TextTest(object): +class TextTest: "Define items common to both sets of tests." hw = 'hello\nworld' # Several tests insert this after initialization. |