File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11
22# Imported from auth0-server-python
33from auth0_server_python .auth_server .server_client import ServerClient
4- from auth0_server_python .auth_types import LogoutOptions , StartInteractiveLoginOptions , ConnectAccountOptions
4+ from auth0_server_python .auth_types import ConnectAccountOptions , LogoutOptions , StartInteractiveLoginOptions
55from fastapi import HTTPException , Request , Response , status
66
77from auth0_fastapi .config import Auth0Config
@@ -111,7 +111,8 @@ async def complete_connect_account(
111111 Optionally, an app_state dictionary can be passed to persist additional state.
112112 Returns the authorization URL to redirect the user.
113113 """
114- return await self .client .complete_connect_account (connect_code = connect_code , state = state , store_options = store_options )
114+ return await self .client .complete_connect_account (
115+ connect_code = connect_code , state = state , store_options = store_options )
115116
116117 async def logout (
117118 self ,
You can’t perform that action at this time.
0 commit comments