Return the active MLflow run ID, or ``None``.
()
| 107 | |
| 108 | |
| 109 | def get_active_run_id() -> Optional[str]: |
| 110 | """Return the active MLflow run ID, or ``None``.""" |
| 111 | return _ensure_client().active_run_id |
| 112 | |
| 113 | |
| 114 | def __getattr__(name: str) -> Any: |
nothing calls this directly
no test coverage detected