diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-06-23 09:01:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 09:01:06 (GMT) |
commit | 5a3108044d2e5b694da2d1f4176c9bbaef15c142 (patch) | |
tree | 1d57a8f4beca796b4540df50eb768a89833dd83b /Lib/test/test_csv.py | |
parent | c3f52b4d707a78eb342372a2be00f3eb846a05b9 (diff) | |
download | cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.zip cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.tar.gz cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.tar.bz2 |
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
Diffstat (limited to 'Lib/test/test_csv.py')
-rw-r--r-- | Lib/test/test_csv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py index a1e050a..225f5c7 100644 --- a/Lib/test/test_csv.py +++ b/Lib/test/test_csv.py @@ -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 |