Skip to content

Commit

Permalink
fix print_new_user_suggestion()
Browse files Browse the repository at this point in the history
  • Loading branch information
enarjord committed Dec 7, 2024
1 parent 1f6e6e1 commit 2ba61cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/exchanges/binance.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ async def print_new_user_suggestion(self):
print(front_pad + "#" * (max_len + 2) + back_pad)
print("\n\n")

async def hourly_cycle(self, verbose=True):
async def init_markets(self, verbose=True):
await self.print_new_user_suggestion()
await super().hourly_cycle(verbose=verbose)
await super().init_markets(verbose=verbose)

def set_market_specific_settings(self):
super().set_market_specific_settings()
Expand Down

0 comments on commit 2ba61cb

Please sign in to comment.