Skip to content

Commit

Permalink
Format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
watkins-matt committed Aug 17, 2024
1 parent e0dbfd7 commit 65a1f61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom_components/google_keep_sync/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ async def async_sync_data(

# Only get the lists that are configured to sync
for list_id in lists_to_sync:
keep_list: (
gkeepapi.node.List | None
) = await self._hass.async_add_executor_job(self._keep.get, list_id)
keep_list: gkeepapi.node.List | None = (
await self._hass.async_add_executor_job(self._keep.get, list_id)
)
if keep_list is None:
_LOGGER.warning(
f"List with ID {list_id} not found. It may have been deleted."
Expand Down

0 comments on commit 65a1f61

Please sign in to comment.