Return stored runtime settings for *key*.
(state: dict[str, Any], key: str)
| 211 | |
| 212 | |
| 213 | def integration_setting(state: dict[str, Any], key: str) -> dict[str, Any]: |
| 214 | """Return stored runtime settings for *key*.""" |
| 215 | return dict(integration_settings(state).get(key, {})) |
| 216 | |
| 217 | |
| 218 | def write_integration_json( |