Fix formatting to use only single quotes

This commit is contained in:
moshferatu 2023-09-18 09:14:39 -07:00
parent 190a6f9a73
commit 13b7919377

View File

@ -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()