Fix syntax error in example code (#1040)

This commit is contained in:
Lukas Kempf 2021-08-26 13:03:20 +02:00 committed by GitHub
parent 558f535bad
commit 76ba74ab87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,7 +118,7 @@ class ExampleConfigFlow(data_entry_flow.FlowHandler):
}
if self.show_advanced_options:
data_schema["allow_groups"]: bool
data_schema["allow_groups"] = bool
return self.async_show_form(step_id="init", data_schema=vol.Schema(data_schema))
```