fix flake8 warning

This commit is contained in:
gcarq 2018-06-08 02:01:18 +02:00
parent 27f83b511f
commit a2a1a517da
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ def get_ticker(pair: str, refresh: Optional[bool] = True) -> dict:
'bid': float(data['bid']),
'ask': float(data['ask']),
}
except KeyError as e:
except KeyError:
logger.debug("Could not cache ticker data for %s", pair)
return data
except (ccxt.NetworkError, ccxt.ExchangeError) as e: