Skip to content

Commit

Permalink
chore: test typing
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed Dec 16, 2023
1 parent b64a8be commit 48c575d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_immutabledict.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def test_new_kwargs(self) -> None:
immutable_dict: immutabledict[str, int] = immutabledict(a=1, b=2)
assert immutable_dict == {"a": 1, "b": 2} == dict(a=1, b=2)

def test_reduce(self):
def test_reduce(self) -> None:
my_dict: immutabledict[str, int] = immutabledict(a=1, b=2)
reduce_cls, reduce_args = my_dict.__reduce__()

Expand Down

0 comments on commit 48c575d

Please sign in to comment.