Skip to content

Commit 65e77dc

Browse files
committed
style(login): 🎨 black code
1 parent d03733f commit 65e77dc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pyfacebook/api/graph.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class GraphAPI:
3030
"v17.0",
3131
"v18.0",
3232
"v19.0",
33-
"v20.0"
33+
"v20.0",
3434
]
3535
GRAPH_URL = "https://graph.facebook.com/"
3636
AUTHORIZATION_URL = "https://www.facebook.com/dialog/oauth"
@@ -562,8 +562,7 @@ def get_authorization_url(
562562
)
563563
url_kwargs = {} if url_kwargs is None else url_kwargs
564564
authorization_url, state = session.authorization_url(
565-
url=self.authorization_url,
566-
**url_kwargs
565+
url=self.authorization_url, **url_kwargs
567566
)
568567
return authorization_url, state
569568

0 commit comments

Comments
 (0)