From 9d0fa1336fe18ffcd258b31c327ff3c5a020532e Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Sat, 9 Dec 2023 17:54:55 +0100 Subject: [PATCH] BUG: remove forgotten comma making error messages look funny --- mesonpy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonpy/__init__.py b/mesonpy/__init__.py index 6e5cbb57..05016a1c 100644 --- a/mesonpy/__init__.py +++ b/mesonpy/__init__.py @@ -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'