mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Add missing return type in Core constructors (#50884)
This commit is contained in:
committed by
GitHub
parent
cf228e3fe5
commit
391b2f8ccd
@@ -15,7 +15,7 @@ import homeassistant.util.dt as dt_util
|
||||
class TraceElement:
|
||||
"""Container for trace data."""
|
||||
|
||||
def __init__(self, variables: TemplateVarsType, path: str):
|
||||
def __init__(self, variables: TemplateVarsType, path: str) -> None:
|
||||
"""Container for trace data."""
|
||||
self._child_key: tuple[str, str] | None = None
|
||||
self._child_run_id: str | None = None
|
||||
|
||||
Reference in New Issue
Block a user