Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edeng23 authored Nov 13, 2021
1 parent ec4867e commit cdca77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binance_trade_bot/auto_trader.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def _get_ratios(self, coin: Coin, coin_price):

if self.config.USE_MARGIN == "yes":
ratio_dict[pair] = (
(1- transaction_fee) * coin_opt_coin_ratio / pair.ratio - 1 - self.config.SCOUT_MARGIN / 100
(1 - transaction_fee) * coin_opt_coin_ratio / pair.ratio - 1 - self.config.SCOUT_MARGIN / 100
)
else:
ratio_dict[pair] = (
Expand Down

0 comments on commit cdca77a

Please sign in to comment.