diff --git a/custom_components/google_keep_sync/coordinator.py b/custom_components/google_keep_sync/coordinator.py index 52be999..0e561ca 100644 --- a/custom_components/google_keep_sync/coordinator.py +++ b/custom_components/google_keep_sync/coordinator.py @@ -60,7 +60,8 @@ async def _async_update_data(self) -> list[GKeepList]: ) _LOGGER.debug( - "Syncing data with Google Keep. Lists to sync: %d, Auto sort: %s, Change case: %s", + "Syncing data with Google Keep. Lists to sync: %d, Auto sort: %s, " + "Change case: %s", len(lists_to_sync), auto_sort, change_case, diff --git a/custom_components/google_keep_sync/todo.py b/custom_components/google_keep_sync/todo.py index 2feb14f..1a775d7 100644 --- a/custom_components/google_keep_sync/todo.py +++ b/custom_components/google_keep_sync/todo.py @@ -58,7 +58,8 @@ def __init__( self.entity_id = self._get_default_entity_id(gkeep_list.title) _LOGGER.debug( - "Initialized GoogleKeepTodoListEntity: name='%s', unique_id='%s', entity_id='%s'", + "Initialized GoogleKeepTodoListEntity: name='%s', unique_id='%s', " + "entity_id='%s'", self._attr_name, self._attr_unique_id, self.entity_id,