diff --git a/openadapt_ml/cloud/local.py b/openadapt_ml/cloud/local.py index 2c7ab60..e11d203 100644 --- a/openadapt_ml/cloud/local.py +++ b/openadapt_ml/cloud/local.py @@ -1034,7 +1034,9 @@ def do_GET(self): # Session tracker provides elapsed_seconds and cost_usd for # persistence across page refreshes try: - from openadapt_evals.infrastructure.azure_ops_tracker import read_status + from openadapt_evals.infrastructure.azure_ops_tracker import ( + read_status, + ) from openadapt_evals.infrastructure.session_tracker import ( get_session, update_session_vm_state, diff --git a/openadapt_ml/scripts/capture_screenshots.py b/openadapt_ml/scripts/capture_screenshots.py index 9e44285..d5c5c95 100644 --- a/openadapt_ml/scripts/capture_screenshots.py +++ b/openadapt_ml/scripts/capture_screenshots.py @@ -321,7 +321,15 @@ def capture_vm_monitor(output_path: Path, mock: bool = True) -> bool: Returns: True if successful, False otherwise """ - cmd = ["uv", "run", "python", "-m", "openadapt_evals.benchmarks.vm_cli", "vm", "monitor"] + cmd = [ + "uv", + "run", + "python", + "-m", + "openadapt_evals.benchmarks.vm_cli", + "vm", + "monitor", + ] if mock: cmd.append("--mock")