Skip to content

Commit e613360

Browse files
committed
Make up your mind mypy
1 parent cbe0972 commit e613360

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/test_stringlist.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,7 @@ def test_delimitedlist():
530530
assert f"{data:;}" == "a;b;c;d;e"
531531
assert f"{data:\n}" == "a\nb\nc\nd\ne"
532532

533-
# TODO: this is a mypy issue
534-
assert f"{data:, }" == "a, b, c, d, e" # type: ignore
533+
assert f"{data:, }" == "a, b, c, d, e"
535534
assert f"{data:; }" == "a; b; c; d; e"
536-
assert f"{data:;}" == "a;b;c;d;e" # type: ignore
537-
assert f"{data:\n}" == "a\nb\nc\nd\ne" # type: ignore
535+
assert f"{data:;}" == "a;b;c;d;e"
536+
assert f"{data:\n}" == "a\nb\nc\nd\ne"

0 commit comments

Comments
 (0)