Skip to content

Commit dc4dc9d

Browse files
fix utils.py
1 parent 953ffa8 commit dc4dc9d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ def format_command_for_display(command: List[str]) -> str:
3030
else:
3131
formatted_part = part
3232

33+
formatted_part = formatted_part.replace(MGC_API_KEY, "[REDACTED]")
3334
formatted_parts.append(formatted_part)
34-
35+
3536
return " ".join(formatted_parts)
3637

3738
def run_cli(args: List[str]) -> tuple[int, str, str, Dict]:

0 commit comments

Comments
 (0)