Skip to content

Commit

Permalink
🤖 Auto-formated Python code
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 8, 2023
1 parent 2466e9d commit 829df93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion backend/api_app/smartcontract/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class Chain(models.TextChoices):
ARB = "ARB", "arb"



class Network(models.TextChoices):
# eth network choices
MAINNET = "MAINNET", "mainnet"
Expand Down
4 changes: 3 additions & 1 deletion backend/authentication/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ def github_login(request):

if settings.DEMO_INSTANCE:
redirect_uri = redirect_uri.replace("http://", "https://")
redirect_uri = "https://demo.thirdeyelabs.xyz/api/authentication/github-callback"
redirect_uri = (
"https://demo.thirdeyelabs.xyz/api/authentication/github-callback"
)

try:
return oauth.github.authorize_redirect(request, redirect_uri)
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"arb": {
"mainnet": ARBITRUM_RPC_URL,
}
},
}

ETH_NETWORK_IDS = {
Expand Down

0 comments on commit 829df93

Please sign in to comment.