chore: add noqa for intentional print in printer utility

This commit is contained in:
Greyson LaLonde
2025-10-08 17:33:13 -04:00
parent 458f56fb33
commit f094df6015

View File

@@ -64,7 +64,7 @@ class Printer:
"""
if isinstance(content, str):
content = [ColoredText(content, color)]
print(
print( # noqa: T201
"".join(
f"{_COLOR_CODES[c.color] if c.color else ''}{c.text}{RESET}"
for c in content