Skip to content

Commit

Permalink
black update
Browse files Browse the repository at this point in the history
  • Loading branch information
singingwolfboy committed Mar 4, 2024
1 parent 58a4d14 commit 23a45eb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions flask_dance/contrib/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ def make_slack_blueprint(
client_secret=client_secret,
scope=scope,
base_url="https://slack.com/api/",
authorization_url="https://slack.com/oauth/authorize"
if subdomain is None
else f"https://{subdomain}.slack.com/oauth/authorize",
authorization_url=(
"https://slack.com/oauth/authorize"
if subdomain is None
else f"https://{subdomain}.slack.com/oauth/authorize"
),
token_url="https://slack.com/api/oauth.access",
redirect_url=redirect_url,
redirect_to=redirect_to,
Expand Down

0 comments on commit 23a45eb

Please sign in to comment.