Skip to content

Commit

Permalink
TODO Recorder callback typing
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Dec 13, 2024
1 parent b1d3b34 commit 29757da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/recorder/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def _async_commit(self, now: datetime) -> None:
self.queue_task(COMMIT_TASK)

@callback
def async_add_executor_job[_T](
def async_add_executor_job[_T]( # TODO
self, target: Callable[..., _T], *args: Any
) -> asyncio.Future[_T]:
"""Add an executor job from within the event loop."""
Expand Down

0 comments on commit 29757da

Please sign in to comment.