diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f2c101..2ef54ef 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.0.13post1 - 2024-09-13 +### Fix +* deepsource found style issue + ## 3.0.13 - 2024-09-13 ### Fix * Sometimes get error from backtesting on Exit [#81](https://github.com/DogsTailFarmer/martin-binance/issues/81#issue-2465248437) diff --git a/martin_binance/__init__.py b/martin_binance/__init__.py index fb8a11b..ece7f38 100755 --- a/martin_binance/__init__.py +++ b/martin_binance/__init__.py @@ -6,7 +6,7 @@ __author__ = "Jerry Fedorenko" __copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM" __license__ = "MIT" -__version__ = "3.0.13" +__version__ = "3.0.13post1" __maintainer__ = "Jerry Fedorenko" __contact__ = "https://github.com/DogsTailFarmer" diff --git a/martin_binance/executor.py b/martin_binance/executor.py index 64c5d4c..4534d21 100644 --- a/martin_binance/executor.py +++ b/martin_binance/executor.py @@ -4,7 +4,7 @@ __author__ = "Jerry Fedorenko" __copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM" __license__ = "MIT" -__version__ = "3.0.13" +__version__ = "3.0.13post1" __maintainer__ = "Jerry Fedorenko" __contact__ = 'https://github.com/DogsTailFarmer' ################################################################## @@ -730,7 +730,7 @@ def start(self, profit_f: Decimal = O_DEC, profit_s: Decimal = O_DEC) -> None: self.grid_only_restart = self.get_time() + GRID_ONLY_DELAY self.message_log("Waiting for conditions for conversion", color=Style.B_WHITE) return - elif USE_ALL_FUND and not self.start_after_shift: + if USE_ALL_FUND and not self.start_after_shift: if self.cycle_buy: self.deposit_second = fs self.message_log(f'Use all available funds: {self.deposit_second} {self.s_currency}')