Fixing multiple typos (#4626)

This commit is contained in:
Erwin Douna 2023-10-15 22:27:51 +02:00 committed by GitHub
parent 012bfd7e6c
commit 6c564fe4fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -662,7 +662,7 @@ class Addon(AddonModel):
await asyncio.wait_for(self._startup_task, STARTUP_TIMEOUT) await asyncio.wait_for(self._startup_task, STARTUP_TIMEOUT)
except asyncio.TimeoutError: except asyncio.TimeoutError:
_LOGGER.warning( _LOGGER.warning(
"Timeout while waiting for addon %s to start, took more then %s seconds", "Timeout while waiting for addon %s to start, took more than %s seconds",
self.name, self.name,
STARTUP_TIMEOUT, STARTUP_TIMEOUT,
) )

View File

@ -250,7 +250,7 @@ class Core(CoreSysAttributes):
except HomeAssistantError as err: except HomeAssistantError as err:
capture_exception(err) capture_exception(err)
else: else:
_LOGGER.info("Skiping start of Home Assistant") _LOGGER.info("Skipping start of Home Assistant")
# Core is not running # Core is not running
if self.sys_homeassistant.core.error_state: if self.sys_homeassistant.core.error_state:

View File

@ -274,7 +274,7 @@ class Job(CoreSysAttributes):
else self.on_condition else self.on_condition
) )
raise on_condition( raise on_condition(
f"Rate limit exceeded, more then {self.throttle_max_calls} calls in {self.throttle_period(group_name)}", f"Rate limit exceeded, more than {self.throttle_max_calls} calls in {self.throttle_period(group_name)}",
) )
# Execute Job # Execute Job