Skip to content

Commit

Permalink
Fix production base_url
Browse files Browse the repository at this point in the history
  • Loading branch information
dtatarkin committed Nov 4, 2024
1 parent 19b9454 commit 31a8824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alpaca/broker/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def __init__(
base_url = (
url_override
if url_override is not None
else BaseURL.BROKER_SANDBOX.value if sandbox else BaseURL.BROKER_PRODUCTION
else BaseURL.BROKER_SANDBOX.value if sandbox else BaseURL.BROKER_PRODUCTION.value
)

super().__init__(
Expand Down

0 comments on commit 31a8824

Please sign in to comment.