Resolve raw and parsed options for an integration operation.
(
integration: Any,
state: dict[str, Any],
key: str,
raw_options: str | None,
)
| 233 | |
| 234 | |
| 235 | def _resolve_integration_options( |
| 236 | integration: Any, |
| 237 | state: dict[str, Any], |
| 238 | key: str, |
| 239 | raw_options: str | None, |
| 240 | ) -> tuple[str | None, dict[str, Any] | None]: |
| 241 | """Resolve raw and parsed options for an integration operation.""" |
| 242 | return _resolve_integration_options_impl( |
| 243 | integration, |
| 244 | state, |
| 245 | key, |
| 246 | raw_options, |
| 247 | parse_options=_parse_integration_options, |
| 248 | ) |
| 249 | |
| 250 | |
| 251 | def _update_init_options_for_integration( |
no outgoing calls
no test coverage detected