Merge pull request #4256 from thopd88/patch-2

Fix operator does not exist: boolean = integer
This commit is contained in:
Matthias 2021-01-26 07:21:39 +01:00 committed by GitHub
commit 9005cd25b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,7 @@ class FreqtradeBot(LoggingMixin):
Notify the user when the bot is stopped
and there are still open trades active.
"""
open_trades = Trade.get_trades([Trade.is_open == 1]).all()
open_trades = Trade.get_trades([Trade.is_open.is_(True)]).all()
if len(open_trades) != 0:
msg = {