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_zzdummy.py | |
parent | 487135a396a504482ae3a7e9c7f80a44627a5a3f (diff) | |
download | cpython-aa671b48d62a00c5ab87fb102be15dd5eeac84dd.tar.gz cpython-aa671b48d62a00c5ab87fb102be15dd5eeac84dd.zip |
gh-87179: Fix more IDLE class headers (#96899)
Remove unneeded '(object)' and '()'.
Diffstat (limited to 'Lib/idlelib/idle_test/test_zzdummy.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_zzdummy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_zzdummy.py b/Lib/idlelib/idle_test/test_zzdummy.py index 1013cdc3c46..209d8564da0 100644 --- a/Lib/idlelib/idle_test/test_zzdummy.py +++ b/Lib/idlelib/idle_test/test_zzdummy.py @@ -19,7 +19,7 @@ testcfg = { } code_sample = """\ -class C1(): +class C1: # Class comment. def __init__(self, a, b): self.a = a |