Skip to content

Commit 3b4ab50

Browse files
fix: remove f-string prefix from static string (ruff F541)
1 parent 891add9 commit 3b4ab50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/deploydiff/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@ def _render_costs(estimates: list[CostEstimate], plan: DeployPlan, console: Cons
147147
elif total < 0:
148148
console.print(f"\n[bold green]Total monthly decrease: -${abs(total):.2f}[/bold green]")
149149
else:
150-
console.print(f"\n[bold]Total monthly change: $0.00[/bold]")
150+
console.print("\n[bold]Total monthly change: $0.00[/bold]")

0 commit comments

Comments
 (0)