Add type ignore.

This commit is contained in:
ljnsn 2022-12-20 01:39:20 +01:00
parent 11111043cd
commit 5b8d026965
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ def test_wrong_id_type(suffix: str) -> None:
path = rsc / header_file
with pytest.raises(ValueError) as e_info:
read_ods(path.with_suffix(suffix), 1.0)
read_ods(path.with_suffix(suffix), 1.0) # type: ignore[arg-type]
assert e_info.match("Sheet id has to be either `str` or `int`")