Skip to content

Commit

Permalink
fix: Failing unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu committed Sep 12, 2023
1 parent a51d242 commit 42b8dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supertokens_python/recipe/session/session_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ async def assert_claims(
for k in protected_props:
try:
del validate_claim_res.access_token_payload_update[k]
except ValueError:
except KeyError:
pass
await self.merge_into_access_token_payload(
validate_claim_res.access_token_payload_update, user_context
Expand Down

0 comments on commit 42b8dc4

Please sign in to comment.