Skip to content

Commit d824a72

Browse files
author
Tom Lasswell
committed
fix: Use more permissive type annotation for schema_dict to fix mypy error
1 parent a624e1f commit d824a72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/govee/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ async def async_step_configure_device_modes(
560560

561561
# Build form for each selected device
562562
coordinator = self._config_entry.runtime_data
563-
schema_dict: dict[vol.Marker, vol.Schema] = {}
563+
schema_dict: dict[Any, Any] = {}
564564

565565
current_device_modes = self._config_entry.options.get("segment_mode_by_device", {})
566566

0 commit comments

Comments
 (0)