Skip to content

Commit b8d4d18

Browse files
fix f-string syntax error
1 parent 0d1367a commit b8d4d18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guardrails/cli/hub/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ def pip_process(
7373
(
7474
f"Failed to {action} {package}\n"
7575
f"Exit code: {exc.returncode}\n"
76-
f"stderr: {(exc.stderr or "").strip()}\n"
77-
f"stdout: {(exc.stdout or "").strip()}"
76+
f"stderr: {(exc.stderr or '').strip()}\n"
77+
f"stdout: {(exc.stdout or '').strip()}"
7878
)
7979
)
8080
# Re-raise the error or handle it accordingly

0 commit comments

Comments
 (0)