Okx formatting

This commit is contained in:
Matthias 2022-10-01 09:32:16 +02:00
parent a96aa568bf
commit 201bbbcee6
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ class Okx(Exchange):
raise DDosProtection(e) from e
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
raise TemporaryError(
f'Error in additional_exchange_init due to {e.__class__.__name__}. Message: {e}') from e
f'Error in additional_exchange_init due to {e.__class__.__name__}. Message: {e}'
) from e
except ccxt.BaseError as e:
raise OperationalException(e) from e