Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
natekspencer committed Feb 8, 2025
1 parent d073766 commit 2492da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybalboa/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def _parse_fault_log(self, data: bytes) -> None:
08 | sensor A temperature
09 | sensor B temperature
"""
self._fault = FaultLog(*data, current_time=self.get_current_time())
self._fault = FaultLog(*(*data, self.get_current_time()))

def _parse_filter_cycle(self, data: bytes) -> None:
"""Parse a filter cycle message.
Expand Down

0 comments on commit 2492da2

Please sign in to comment.