Skip to content

Commit b1b3b84

Browse files
committed
lint: fix lint errors
1 parent c4be74c commit b1b3b84

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

supertokens_python/recipe/dashboard/api/__init__.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,24 @@
3333
from .validate_key import handle_validate_key_api
3434

3535
__all__ = [
36-
"handle_dashboard_api",
3736
"api_key_protector",
38-
"handle_users_count_get_api",
39-
"handle_users_get_api",
40-
"handle_validate_key_api",
41-
"handle_user_email_verify_get",
42-
"handle_user_get",
37+
"handle_analytics_post",
38+
"handle_dashboard_api",
39+
"handle_email_verify_token_post",
40+
"handle_emailpassword_signin_api",
41+
"handle_emailpassword_signout_api",
42+
"handle_get_tags",
4343
"handle_metadata_get",
44+
"handle_metadata_put",
4445
"handle_sessions_get",
4546
"handle_user_delete",
46-
"handle_user_put",
47+
"handle_user_email_verify_get",
4748
"handle_user_email_verify_put",
48-
"handle_metadata_put",
49-
"handle_user_sessions_post",
49+
"handle_user_get",
5050
"handle_user_password_put",
51-
"handle_email_verify_token_post",
52-
"handle_emailpassword_signin_api",
53-
"handle_emailpassword_signout_api",
54-
"handle_get_tags",
55-
"handle_analytics_post",
51+
"handle_user_put",
52+
"handle_user_sessions_post",
53+
"handle_users_count_get_api",
54+
"handle_users_get_api",
55+
"handle_validate_key_api",
5656
]

supertokens_python/types/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
__all__ = (
2929
"APIResponse",
30-
"GeneralErrorResponse",
3130
"AccountInfo",
31+
"GeneralErrorResponse",
3232
"LoginMethod",
3333
"MaybeAwaitable",
3434
"RecipeUserId",

supertokens_python/types/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class BaseNormalisedOverrideConfig(
7272
)
7373

7474
@classmethod
75-
def from_input_config(
75+
def from_input_config( # type: ignore - invalid override due to subclassing
7676
cls,
7777
override_config: Optional[
7878
BaseOverrideConfig[FunctionInterfaceType, APIInterfaceType]

0 commit comments

Comments
 (0)