Skip to content

Commit b4e44f8

Browse files
committed
Fix wrong ident
1 parent 6547da5 commit b4e44f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugwise_usb/nodes/circle.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -646,9 +646,9 @@ async def _energy_log_records_load_from_cache(self) -> bool: # noqa: PLR0912
646646
second=int(parts[5]),
647647
tzinfo=UTC,
648648
)
649-
if restored_logs.get(address) is None:
650-
restored_logs[address] = {}
651-
restored_logs[address][slot] = (timestamp, pulses)
649+
if restored_logs.get(address) is None:
650+
restored_logs[address] = {}
651+
restored_logs[address][slot] = (timestamp, pulses)
652652

653653
# Sort and prune the records loaded from cache
654654
sorted_logs: dict[int, dict[int, tuple[datetime, int]]] = {}

0 commit comments

Comments
 (0)