Skip to content

Commit c6782b5

Browse files
committed
Fix E501 on scientific precision=0 test comment.
1 parent b9c1966 commit c6782b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def test_clamp(test_args: list[typing.Any], expected: str) -> None:
314314
([math.nan, "m"], "NaN"),
315315
([math.inf], "+Inf"),
316316
([-math.inf], "-Inf"),
317-
# precision=0 on a scientific-fallback magnitude passed -1 to scientific(); see #159.
317+
# precision=0 scientific fallback used to pass -1 into scientific(); see #159.
318318
([1e300, "m", 0], "1 x 10³⁰⁰m"),
319319
([-1e300, "m", 0], "-1 x 10³⁰⁰m"),
320320
([1e-300, "m", 0], "1 x 10⁻³⁰⁰m"),

0 commit comments

Comments
 (0)