Skip to content

Commit

Permalink
style(login): 🎨 black code
Browse files Browse the repository at this point in the history
  • Loading branch information
MerleLiuKun committed Aug 20, 2024
1 parent d03733f commit 65e77dc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pyfacebook/api/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class GraphAPI:
"v17.0",
"v18.0",
"v19.0",
"v20.0"
"v20.0",
]
GRAPH_URL = "https://graph.facebook.com/"
AUTHORIZATION_URL = "https://www.facebook.com/dialog/oauth"
Expand Down Expand Up @@ -562,8 +562,7 @@ def get_authorization_url(
)
url_kwargs = {} if url_kwargs is None else url_kwargs
authorization_url, state = session.authorization_url(
url=self.authorization_url,
**url_kwargs
url=self.authorization_url, **url_kwargs
)
return authorization_url, state

Expand Down

0 comments on commit 65e77dc

Please sign in to comment.