diff --git a/tibber/__init__.py b/tibber/__init__.py index c940af6..55befda 100644 --- a/tibber/__init__.py +++ b/tibber/__init__.py @@ -211,7 +211,8 @@ async def send_notification(self, title: str, message: str) -> bool: async def fetch_consumption_data_active_homes(self) -> None: """Fetch consumption data for active homes.""" - await asyncio.gather(*[tibber_home.fetch_consumption_data() for tibber_home in self.get_homes(only_active=True)]) + await asyncio.gather(*[tibber_home.fetch_consumption_data() + for tibber_home in self.get_homes(only_active=True)]) async def fetch_production_data_active_homes(self) -> None: """Fetch production data for active homes."""