Skip to content

Commit f77aa7e

Browse files
committed
Fix linting issues
1 parent 2b7603d commit f77aa7e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/auth0_fastapi/auth/auth_client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Imported from auth0-server-python
33
from 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
55
from fastapi import HTTPException, Request, Response, status
66

77
from 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,

0 commit comments

Comments
 (0)