Trigger Entity async_update from within OptionsFlowHandler

I’m trying to trigger an update on the Entity from within the config_flow, OptionsFlowHandler. I’ve not been able to find a way to get from the ConfigEntry to the Entity to be able to call async_update.

I’m using the OptionsFlow to change the existing config settings and not to have any further options. There is no device created and only 1 Entity per instance.

This is for the Places custom component: GitHub - custom-components/places: Component to integrate with OpenStreetMap Reverse Geocode (places)

Its not easy to find in documentation but you basically add a listener in your async_setup_entry as per this doc.

Thanks for pointing me in the right direction. That definitely helped.