mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-27 17:18:13 +00:00
chore: add noqa for intentional print in printer utility
This commit is contained in:
@@ -64,7 +64,7 @@ class Printer:
|
|||||||
"""
|
"""
|
||||||
if isinstance(content, str):
|
if isinstance(content, str):
|
||||||
content = [ColoredText(content, color)]
|
content = [ColoredText(content, color)]
|
||||||
print(
|
print( # noqa: T201
|
||||||
"".join(
|
"".join(
|
||||||
f"{_COLOR_CODES[c.color] if c.color else ''}{c.text}{RESET}"
|
f"{_COLOR_CODES[c.color] if c.color else ''}{c.text}{RESET}"
|
||||||
for c in content
|
for c in content
|
||||||
|
|||||||
Reference in New Issue
Block a user