Simplify expression

This commit is contained in:
Matthias 2020-02-29 20:41:03 +01:00
parent 60579485e5
commit 60f04cff4d

View File

@ -333,7 +333,7 @@ class Exchange:
f"Please check if you are impacted by this restriction " f"Please check if you are impacted by this restriction "
f"on the exchange and eventually remove {pair} from your whitelist.") f"on the exchange and eventually remove {pair} from your whitelist.")
if (self._config['stake_currency'] and if (self._config['stake_currency'] and
not self.get_pair_quote_currency(pair) == self._config['stake_currency']): self.get_pair_quote_currency(pair) != self._config['stake_currency']):
invalid_pairs.append(pair) invalid_pairs.append(pair)
if invalid_pairs: if invalid_pairs:
raise OperationalException( raise OperationalException(