Fix formatting to use only single quotes
This commit is contained in:
parent
190a6f9a73
commit
13b7919377
@ -6,13 +6,13 @@ from tastytrade import Tastytrade
|
||||
|
||||
load_dotenv()
|
||||
|
||||
ibkr_host = getenv("IBKR_HOST")
|
||||
ibkr_port = getenv("IBKR_PORT")
|
||||
ibkr_host = getenv('IBKR_HOST')
|
||||
ibkr_port = getenv('IBKR_PORT')
|
||||
ibkr_client = Client(host = ibkr_host, port = ibkr_port)
|
||||
|
||||
tastytrade_account = getenv("TASTYTRADE_ACCOUNT")
|
||||
tastytrade_username = getenv("TASTYTRADE_USERNAME")
|
||||
tastytrade_password = getenv("TASTYTRADE_PASSWORD")
|
||||
tastytrade_account = getenv('TASTYTRADE_ACCOUNT')
|
||||
tastytrade_username = getenv('TASTYTRADE_USERNAME')
|
||||
tastytrade_password = getenv('TASTYTRADE_PASSWORD')
|
||||
tastytrade_client = Tastytrade(tastytrade_username, tastytrade_password)
|
||||
tastytrade_client.login()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user