diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2022-09-17 17:53:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-17 17:53:23 -0400 |
commit | aa671b48d62a00c5ab87fb102be15dd5eeac84dd (patch) | |
tree | 5ae8f83f97079ca71f76521c358c29921ece21df /Lib/idlelib/idle_test/test_text.py | |
parent | 487135a396a504482ae3a7e9c7f80a44627a5a3f (diff) | |
download | cpython-git-aa671b48d62a00c5ab87fb102be15dd5eeac84dd.tar.gz |
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 0f31179e04..43a9ba02c3 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. |