Skip to content

Commit

Permalink
adding dev-v0.16.0 tag to this commit to ensure building
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed Sep 12, 2023
1 parent f1fbdf4 commit 34887f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions html/supertokens_python/recipe/session/session_class.html
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.session.session_class</
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 Expand Up @@ -542,7 +542,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
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 Expand Up @@ -697,7 +697,7 @@ <h3>Methods</h3>
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 34887f8

Please sign in to comment.