Skip to content

Commit 5eac706

Browse files
committed
feat: complete remaining items
1 parent 2dca9c0 commit 5eac706

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

supertokens_python/recipe/session/api/signout.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ async def handle_signout_api(api_implementation: APIInterface, api_options: APIO
3737
user_context=user_context,
3838
)
3939

40-
assert session is not None # TODO: Is this okay?
4140
response = await api_implementation.signout_post(api_options, session, user_context)
4241
if api_options.response is None:
4342
raise Exception("Should never come here")

supertokens_python/recipe/session/claim_base_classes/primitive_array_claim.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ async def _validate(
104104
val if isinstance(val, list) else [val]
105105
) # pyright: reportGeneralTypeIssues=false
106106

107-
#
108-
109107
claim_val_set = set(claim_val)
110108
if is_include:
111109
for v in vals:

0 commit comments

Comments
 (0)