Return normalized per-integration settings from state.
(state: dict[str, Any])
| 206 | |
| 207 | |
| 208 | def integration_settings(state: dict[str, Any]) -> dict[str, dict[str, Any]]: |
| 209 | """Return normalized per-integration settings from state.""" |
| 210 | return normalize_integration_settings(state.get("integration_settings")) |
| 211 | |
| 212 | |
| 213 | def integration_setting(state: dict[str, Any], key: str) -> dict[str, Any]: |
no test coverage detected