summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_csv.py
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2021-06-23 09:01:06 (GMT)
committerGitHub <noreply@github.com>2021-06-23 09:01:06 (GMT)
commit5a3108044d2e5b694da2d1f4176c9bbaef15c142 (patch)
tree1d57a8f4beca796b4540df50eb768a89833dd83b /Lib/test/test_csv.py
parentc3f52b4d707a78eb342372a2be00f3eb846a05b9 (diff)
downloadcpython-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.py2
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