Fix flake8 intention issue.

This commit is contained in:
Reigo Reinmets 2022-01-14 20:25:29 +02:00
parent 766c69734d
commit 93adb436f8
1 changed files with 3 additions and 3 deletions

View File

@ -621,9 +621,9 @@ class LocalTrade():
:return: array of Order objects
"""
return [o for o in self.orders if o.ft_order_side == order_side and
o.ft_is_open is False and
(o.filled or 0) > 0 and
o.status in NON_OPEN_EXCHANGE_STATES]
o.ft_is_open is False and
(o.filled or 0) > 0 and
o.status in NON_OPEN_EXCHANGE_STATES]
@property
def nr_of_successful_buys(self) -> int: