From 521b21e6a8267ef8fc9ea48f82043e9430dfbc65 Mon Sep 17 00:00:00 2001 From: Jack Powell Date: Sat, 27 Apr 2024 14:11:06 +0000 Subject: [PATCH] coordinator cleanup --- custom_components/playstation_network/coordinator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/custom_components/playstation_network/coordinator.py b/custom_components/playstation_network/coordinator.py index d7ba2a6..4b918bd 100644 --- a/custom_components/playstation_network/coordinator.py +++ b/custom_components/playstation_network/coordinator.py @@ -9,7 +9,6 @@ from homeassistant.exceptions import ConfigEntryAuthFailed from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed from psnawp_api.core.psnawp_exceptions import PSNAWPAuthenticationError -from psnawp_api.psnawp import PSNAWP from .const import DEVICE_SCAN_INTERVAL, DOMAIN @@ -90,4 +89,3 @@ async def _async_update_data(self) -> dict[str, Any]: raise UpdateFailed( f"Error communicating with the Playstation Network {ex}" ) from ex - _LOGGER.debug("PSN Data Update values")