Skip to content

Commit

Permalink
style: ruff fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <[email protected]>
  • Loading branch information
dbluhm committed Sep 17, 2024
1 parent fe76a09 commit b8e24f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/crypto/test_askar.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ async def test_key_from_verification_method(vm, expected):

key = AskarCryptoService.verification_method_to_public_key(vm)
print(key.kid)
assert type(key) == AskarKey
assert type(key) is AskarKey
assert key.kid == expected


Expand All @@ -162,5 +162,5 @@ async def test_key_from_verification_method_unsupported():

key = AskarCryptoService.verification_method_to_public_key(vm)
print(key.kid)
assert type(key) == AskarKey
assert type(key) is AskarKey
# assert key.kid == expected

0 comments on commit b8e24f0

Please sign in to comment.