From dcc9d20ccae24116fac6cb7b66d5de1a6f3fd855 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 16 Jul 2024 07:31:11 +0200 Subject: [PATCH] Remove unnecessary statement --- freqtrade/plugins/protections/iprotection.py | 1 - 1 file changed, 1 deletion(-) diff --git a/freqtrade/plugins/protections/iprotection.py b/freqtrade/plugins/protections/iprotection.py index 670a803c4..c4b039161 100644 --- a/freqtrade/plugins/protections/iprotection.py +++ b/freqtrade/plugins/protections/iprotection.py @@ -131,7 +131,6 @@ class IProtection(LoggingMixin, ABC): if self._unlock_at is not None: # unlock_at case with fixed hour of the day - until = self._unlock_at hour, minutes = self._unlock_at.split(":") unlock_at = max_date.replace(hour=int(hour), minute=int(minutes)) if unlock_at < max_date: