Skip to content

Commit

Permalink
fix holdings indent
Browse files Browse the repository at this point in the history
  • Loading branch information
NelsonDane committed Jan 22, 2024
1 parent d321f9e commit 7b5a16e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion firstradeAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def firstrade_holdings(firstrade_o: Brokerage, loop=None):
printAndDiscord(f"{key} {account}: Error getting holdings: {e}", loop)
print(traceback.format_exc())
continue
printHoldings(firstrade_o, loop)
printHoldings(firstrade_o, loop)


def firstrade_transaction(firstrade_o: Brokerage, orderObj: stockOrder, loop=None):
Expand Down
2 changes: 1 addition & 1 deletion robinhoodAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def robinhood_holdings(rho: Brokerage, loop=None):
printAndDiscord(f"{key}: Error getting account holdings: {e}", loop)
traceback.format_exc()
continue
printHoldings(rho, loop)
printHoldings(rho, loop)


def robinhood_transaction(rho: Brokerage, orderObj: stockOrder, loop=None):
Expand Down
2 changes: 1 addition & 1 deletion tastyAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def tastytrade_holdings(tt_o: Brokerage, loop=None):
printAndDiscord(f"{key}: Error getting account holdings: {e}", loop)
print(traceback.format_exc())
continue
printHoldings(tt_o, loop=loop)
printHoldings(tt_o, loop=loop)


async def tastytrade_execute(tt_o: Brokerage, orderObj: stockOrder, loop=None):
Expand Down

0 comments on commit 7b5a16e

Please sign in to comment.