From 00162d8d684ef4d722101ea3e74ada3f9785ca26 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sun, 8 Feb 2026 00:37:55 +0100 Subject: [PATCH] fix(formatter): remove debug print --- src/formatter.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/formatter.py b/src/formatter.py index 453d45d..4bbb02f 100644 --- a/src/formatter.py +++ b/src/formatter.py @@ -192,7 +192,6 @@ class Formatter(Expr.Visitor[str], Stmt.Visitor[str]): return self.indented(f"{stmt.keyword.lexeme}\n") def format_format_spec(self, spec: FormatSpec) -> str: - print(spec) res: str = "" if spec.options.sign is not None: res += spec.options.sign.lexeme