Skip to content

Commit

Permalink
BUG: remove forgotten comma making error messages look funny
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi authored and rgommers committed Dec 9, 2023
1 parent 595d68d commit 9d0fa13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def _map_to_wheel(sources: Dict[str, Dict[str, Any]]) -> DefaultDict[str, List[T


class style:
ERROR = '\33[31m', # red
ERROR = '\33[31m' # red
WARNING = '\33[93m' # bright yellow
INFO = '\33[36m\33[1m' # cyan, bold
RESET = '\33[0m'
Expand Down

0 comments on commit 9d0fa13

Please sign in to comment.