v0.6.5 — Actually fix the options-flow 500
Fixed
- The Configure cog still 500'd in 0.6.4 because
async_get_options_flowwas still callingRainWarnerOptionsFlow(config_entry). With the constructor gone, the parentOptionsFlow.__init__(=object.__init__) rejects the positional argument and raisesTypeError: RainWarnerOptionsFlow() takes no arguments. Modern Home Assistant injectsself.config_entryon the handler itself, so the factory now returnsRainWarnerOptionsFlow()with no args and the options dialog finally opens.
Verified live: POST /api/config/config_entries/options/flow now returns HTTP 200 with the expected schema (data_source / radius / nowcast_engine).
Full Changelog: v0.6.4...v0.6.5