Skip to content

Commit 469011f

Browse files
authored
Merge pull request #154 from eadwinCode/code_style_fix
fix: Ruff v0.5.0 linting errors
2 parents eb4d527 + efc925a commit 469011f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_generic_patch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class _A(A):
2424
def test_generic_patch_works():
2525
B = AGenericPatch[int]
2626
assert str(B.__name__) == "A[int]"
27-
assert B.__annotations__["wrap_generic"] == int
27+
assert B.__annotations__["wrap_generic"] is int
2828
assert hasattr(B, "__generic_model__")
2929
assert B.__generic_model__ == AGenericPatch
3030
assert B == AGenericPatch[int]

0 commit comments

Comments
 (0)