|
24 | 24 | class PyscriptOptionsConfigFlow(config_entries.OptionsFlow):
|
25 | 25 | """Handle a pyscript options flow."""
|
26 | 26 |
|
27 | | - def __init__(self, config_entry: ConfigEntry) -> None: |
| 27 | + def __init__(self) -> None: |
28 | 28 | """Initialize pyscript options flow."""
|
29 | | - self._config_entry=config_entry |
| 29 | + self._conf_app_id: str|None=None |
30 | 30 | self._show_form = False
|
31 | 31 |
|
32 | 32 | async def async_step_init(self, user_input: Dict[str, Any] = None) -> Dict[str, Any]:
|
@@ -88,7 +88,7 @@ class PyscriptConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
88 | 88 | @callback
|
89 | 89 | def async_get_options_flow(config_entry: ConfigEntry) -> PyscriptOptionsConfigFlow:
|
90 | 90 | """Get the options flow for this handler."""
|
91 | | - return PyscriptOptionsConfigFlow(config_entry) |
| 91 | + return PyscriptOptionsConfigFlow() |
92 | 92 |
|
93 | 93 | async def async_step_user(self, user_input: Dict[str, Any] = None) -> Dict[str, Any]:
|
94 | 94 | """Handle a flow initialized by the user."""
|
|
0 commit comments