Update commander.py

This commit is contained in:
Richard Bronkhorst 2023-06-26 13:40:11 +02:00
parent 11031599cf
commit 6c98eec738

View File

@ -130,9 +130,9 @@ class Commander(CommandLine):
resource = delivery['trade_symbol']
destination = delivery['destination']
m = self.analyzer.find_closest_markets(resource, 'buy', destination)
if len(m) is None:
if len(m) == 0:
m = self.analyzer.find_closest_markets(resource, 'exchange', destination)
if len(m) is None:
if len(m) == 0:
print('no market found')
return
_, m, _, _ = m[0]