Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
watkins-matt committed Aug 17, 2024
1 parent b4cd8d7 commit 4ff8314
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion custom_components/google_keep_sync/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion custom_components/google_keep_sync/todo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4ff8314

Please sign in to comment.