Skip to content

Commit 1b5afdb

Browse files
authored
Fix line too long
1 parent 71859c9 commit 1b5afdb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

custom_components/neviweb130/climate.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2552,7 +2552,9 @@ def do_stat(self, start):
25522552
self._month_kwh = 0
25532553
_LOGGER.warning("%s Got None for device_monthly_stats", self._name)
25542554
device_daily_stats = self._client.get_device_daily_stats(self._id)
2555-
_LOGGER.debug("%s device_daily_stats = %s", self._name, device_daily_stats)
2555+
_LOGGER.debug(
2556+
"%s device_daily_stats = %s", self._name, device_daily_stats
2557+
)
25562558
if device_daily_stats is not None and len(device_daily_stats) > 1:
25572559
n = len(device_daily_stats)
25582560
daily_kwh_count = 0

0 commit comments

Comments
 (0)