Skip to content

Commit

Permalink
fix: remove message encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
seppzer0 committed Sep 14, 2024
1 parent c317943 commit e295cdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/tools/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def done(text: str) -> None:
:param str text: Text to wrap.
"""
print(f"[ \u2713 ] {text}".encode("utf-8"))
print(f"[ \u2713 ] {text}")


def debug(text: str) -> None:
Expand Down

0 comments on commit e295cdc

Please sign in to comment.