mirror of
https://github.com/home-assistant/core.git
synced 2025-11-14 21:40:16 +00:00
Add missing return type in Core constructors (#50884)
This commit is contained in:
committed by
GitHub
parent
cf228e3fe5
commit
391b2f8ccd
@@ -12,7 +12,7 @@ from . import template
|
||||
class ScriptVariables:
|
||||
"""Class to hold and render script variables."""
|
||||
|
||||
def __init__(self, variables: dict[str, Any]):
|
||||
def __init__(self, variables: dict[str, Any]) -> None:
|
||||
"""Initialize script variables."""
|
||||
self.variables = variables
|
||||
self._has_template: bool | None = None
|
||||
|
||||
Reference in New Issue
Block a user