Skip to content

Commit

Permalink
Ruff compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed Jul 4, 2024
1 parent 864c895 commit 090e0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def test_register():
assert func(0) is int
assert func(False) is bool
assert func([0]) == func((0.0,)) == func({'': 0}) == func({}) == 'union'
assert func([0.0]) == func((0.0, 1.0)) == object
assert func([0.0]) is func((0.0, 1.0)) is object


# multimeta
Expand Down

0 comments on commit 090e0ef

Please sign in to comment.