bpo-28395: Remove unnecessary semicolons in tests (GH-26868)

This commit is contained in:
Dong-hee Na 2021-06-23 18:01:06 +09:00 committed by GitHub
parent c3f52b4d70
commit 5a3108044d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 31 additions and 30 deletions

View file

@ -157,7 +157,7 @@ class Test_Csv(unittest.TestCase):
self._write_error_test(OSError, BadIterable())
class BadList:
def __len__(self):
return 10;
return 10
def __getitem__(self, i):
if i > 2:
raise OSError