We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e272fe0 commit ff95cbcCopy full SHA for ff95cbc
plugwise_usb/nodes/helpers/pulses.py
@@ -540,7 +540,8 @@ def _check_prev_production(
540
elif self._log_production is None:
541
self._log_production = False
542
return prev_timestamp
543
- elif self._first_prev_log_processed:
+
544
+ if self._first_prev_log_processed:
545
self._first_prev_log_processed = False
546
return None
547
@@ -567,7 +568,8 @@ def _check_next_production(
567
568
569
570
return next_timestamp
- elif self._first_next_log_processed:
571
572
+ if self._first_next_log_processed:
573
self._first_next_log_processed = False
574
575
0 commit comments