more docs

This commit is contained in:
J. Nick Koston 2024-05-14 12:20:40 +09:00
parent 91514ae62e
commit 55572ff252
No known key found for this signature in database

View File

@ -135,3 +135,15 @@ The floor registry must be modified in the event loop thread. There is no sync A
#### floor_registry.async_update
The floor registry must be modified in the event loop thread. There is no sync API for the floor registry. Use `hass.add_job` to schedule a function in the event loop that calls `floor_registry.async_update`.
#### label_registry.async_create
The label registry must be modified in the event loop thread. There is no sync API for the label registry. Use `hass.add_job` to schedule a function in the event loop that calls `label_registry.async_create`.
#### label_registry.async_delete
The label registry must be modified in the event loop thread. There is no sync API for the label registry. Use `hass.add_job` to schedule a function in the event loop that calls `label_registry.async_delete`.
#### label_registry.async_update
The label registry must be modified in the event loop thread. There is no sync API for the label registry. Use `hass.add_job` to schedule a function in the event loop that calls `label_registry.async_updat`.