(value: Any)
| 15 | |
| 16 | |
| 17 | def _normalize_result_namespace(value: Any) -> str: |
| 18 | text = str(value or "") |
| 19 | legacy_prefix = f"{LEGACY_RESULT_NAMESPACE}." |
| 20 | current_prefix = f"{RESULT_NAMESPACE}." |
| 21 | if text.startswith(legacy_prefix): |
| 22 | return text.replace(legacy_prefix, current_prefix, 1) |
| 23 | return text |
| 24 | |
| 25 | |
| 26 | _MODEL_ALIAS_ALIASES = { |
no outgoing calls
no test coverage detected