summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_except_star.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-06-26 08:34:06 (GMT)
committerGitHub <noreply@github.com>2022-06-26 08:34:06 (GMT)
commite87ada48a9e5d9d03f9759138869216df0d7383a (patch)
tree40a551a7af6d0d6e1cd04705e58aca8462721a9e /Lib/test/test_except_star.py
parentd4792ce916b94d090b6c7bce8b0f973e840c9e4e (diff)
downloadcpython-e87ada48a9e5d9d03f9759138869216df0d7383a.zip
cpython-e87ada48a9e5d9d03f9759138869216df0d7383a.tar.gz
cpython-e87ada48a9e5d9d03f9759138869216df0d7383a.tar.bz2
Run Tools/scripts/reindent.py (#94225)
Reindent files which were not properly formatted (PEP 8: 4 spaces). Remove also some trailing spaces.
Diffstat (limited to 'Lib/test/test_except_star.py')
-rw-r--r--Lib/test/test_except_star.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_except_star.py b/Lib/test/test_except_star.py
index 490b159..dbe8eff 100644
--- a/Lib/test/test_except_star.py
+++ b/Lib/test/test_except_star.py
@@ -955,7 +955,7 @@ class TestExceptStarExceptionGroupSubclass(ExceptStarTest):
def test_falsy_exception_group_subclass(self):
class FalsyEG(ExceptionGroup):
def __bool__(self):
- return False
+ return False
def derive(self, excs):
return FalsyEG(self.message, excs)