File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
plugwise_usb/nodes/helpers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -219,17 +219,17 @@ def _collect_pulses_from_logs(
219219 self ._mac ,
220220 )
221221 return None
222- if from_timestamp > self ._last_log_consumption_timestamp :
223- return 0
222+ # if from_timestamp > self._last_log_consumption_timestamp:
223+ # return 0
224224 else :
225225 if self ._last_log_production_timestamp is None :
226226 _LOGGER .debug (
227227 "_collect_pulses_from_logs | %s | self._last_log_production_timestamp=None" ,
228228 self ._mac ,
229229 )
230230 return None
231- if from_timestamp > self ._last_log_production_timestamp :
232- return 0
231+ # if from_timestamp > self._last_log_production_timestamp:
232+ # return 0
233233
234234 missing_logs = self ._logs_missing (from_timestamp )
235235 if missing_logs is None or missing_logs :
You can’t perform that action at this time.
0 commit comments