Skip to content

Commit 6d10092

Browse files
committed
Oh mypy
1 parent 59b9a3c commit 6d10092

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_decode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def test_p3109_k8_specials(fi: FormatInfo) -> None:
225225
@pytest.mark.parametrize(
226226
"k,p", [(8, 3), (8, 1), (6, 1), (6, 5), (3, 1), (3, 2), (11, 3)]
227227
)
228-
def test_p3109_specials(k, p) -> None:
228+
def test_p3109_specials(k: int, p: int) -> None:
229229
fi = format_info_p3109(k, p)
230230
assert fi.code_of_nan == 2 ** (k - 1)
231231
assert fi.code_of_zero == 0

0 commit comments

Comments
 (0)