Return installed integration keys from normalized state.
(state: dict[str, Any])
| 201 | |
| 202 | |
| 203 | def installed_integration_keys(state: dict[str, Any]) -> list[str]: |
| 204 | """Return installed integration keys from normalized state.""" |
| 205 | return dedupe_integration_keys(state.get("installed_integrations", [])) |
| 206 | |
| 207 | |
| 208 | def integration_settings(state: dict[str, Any]) -> dict[str, dict[str, Any]]: |
no test coverage detected