fix(formatter): remove debug print

This commit is contained in:
2026-02-08 00:37:55 +01:00
parent aaef9ad748
commit 00162d8d68

View File

@@ -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