After generating new data for my home assistant instance I see fields are set as empty literals. When I run AppDaemon I see the following error:
2026-08-04 19:43:38.300532 ERROR Error: ===== Error importing 'security.frigate' ================================
2026-08-04 19:43:38.300754 ERROR Error: FailedImport: Failed to import 'security.frigate'
2026-08-04 19:43:38.302292 ERROR Error: SyntaxError: invalid syntax (hass_data.py, line 23)
2026-08-04 19:43:38.302510 ERROR Error: State12: TypeAlias = Literal[]
2026-08-04 19:43:38.302774 ERROR Error: ^
2026-08-04 19:43:38.302929 ERROR Error: ===========================================================================
The fix is to just add a value to the Literal such as Literal['']
After generating new data for my home assistant instance I see fields are set as empty literals. When I run AppDaemon I see the following error:
The fix is to just add a value to the Literal such as
Literal['']