1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

Fix typos in docstrings (#4546)

* [typo] `Assitant` -> `Assistant`

* [typo] `an` -> `a`
This commit is contained in:
Chris Carini
2023-09-26 00:21:57 -07:00
committed by GitHub
parent 49ce468d83
commit f5afe13e91
2 changed files with 3 additions and 3 deletions

View File

@@ -725,7 +725,7 @@ class CoreSysAttributes:
def sys_run_in_executor(
self, funct: Callable[..., T], *args: tuple[Any], **kwargs: dict[str, Any]
) -> Coroutine[Any, Any, T]:
"""Add an job to the executor pool."""
"""Add a job to the executor pool."""
return self.coresys.run_in_executor(funct, *args, **kwargs)
def sys_create_task(self, coroutine: Coroutine) -> asyncio.Task: