Fix flake8 error introduced with 6.0 update

This commit is contained in:
Matthias 2022-11-28 06:38:35 +01:00
parent 49e41925b0
commit d73fd42769

View File

@ -87,7 +87,7 @@ class PairLocks():
Get the lock that expires the latest for the pair given. Get the lock that expires the latest for the pair given.
""" """
locks = PairLocks.get_pair_locks(pair, now, side=side) locks = PairLocks.get_pair_locks(pair, now, side=side)
locks = sorted(locks, key=lambda l: l.lock_end_time, reverse=True) locks = sorted(locks, key=lambda lock: lock.lock_end_time, reverse=True)
return locks[0] if locks else None return locks[0] if locks else None
@staticmethod @staticmethod