Skip to content

Commit 481c08d

Browse files
committed
chores: Linter errors
1 parent 74d52f6 commit 481c08d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

supertokens_python/recipe/emailpassword/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(
3030
self.time_joined = time_joined
3131
self.tenant_ids = tenant_ids
3232

33-
def __eq__(self, other: "User"):
33+
def __eq__(self, other: "User"): # type: ignore
3434
return (
3535
isinstance(other, self.__class__)
3636
and self.user_id == other.user_id

supertokens_python/recipe/thirdpartyemailpassword/recipeimplementation/implementation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ async def thirdparty_get_provider(
276276
raise Exception("No thirdparty provider configured")
277277

278278
return await self.tp_get_provider(
279-
third_party_id, tenant_id, client_type, user_context
279+
third_party_id, client_type, tenant_id, user_context
280280
)
281281

282282
async def emailpassword_sign_in(

supertokens_python/recipe/thirdpartypasswordless/recipeimplementation/implementation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ async def thirdparty_get_provider(
296296
if self.tp_get_provider is None:
297297
raise Exception("No thirdparty provider configured")
298298
return await self.tp_get_provider(
299-
third_party_id, tenant_id, client_type, user_context
299+
third_party_id, client_type, tenant_id, user_context
300300
)
301301

302302
async def get_user_by_phone_number(

0 commit comments

Comments
 (0)