Skip to content

Commit

Permalink
Fix remaining Python 3.9 incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
brianschubert committed Mar 13, 2024
1 parent fabaf7b commit 1706038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def assert_embedded_isclose(s1: str, s2: str, **kwargs: Any) -> None:
f" numbers ({len(embedded_s1)} vs {len(embedded_s2)})"
)

for left_num, right_num in zip(embedded_s1, embedded_s2, strict=False):
for left_num, right_num in zip(embedded_s1, embedded_s2):
assert math.isclose(left_num, right_num, **kwargs), (
"embedded numbers do not agree within tolerance between"
f" strings {s1=!r} and {s2=!r}"
Expand Down

0 comments on commit 1706038

Please sign in to comment.