Skip to content

Commit

Permalink
tests: fix lint error in tests (#1084)
Browse files Browse the repository at this point in the history
format: fix lint error in tests
  • Loading branch information
MatteoVoges authored Jun 1, 2023
1 parent 71f833b commit 85b3892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_basic_ops_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def test_map_expansion() -> None:
def foo(a: int, b: int) -> int:
return a + b

assert 12 == foo(**c)
assert 12 == foo(**c) # type: ignore[misc] # (known mypi error with dict unpacking)


def test_items_iterator_behavior() -> None:
Expand Down

0 comments on commit 85b3892

Please sign in to comment.