From 2c37b481e3202deafe8ac52cba2422f46095a2be Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Fri, 5 Jul 2024 12:05:45 +0200
Subject: [PATCH] fix : typo

---
 setup.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/setup.py b/setup.py
index 19289dc2d..5f3de53f4 100644
--- a/setup.py
+++ b/setup.py
@@ -52,13 +52,11 @@ class CMakeBuild(build_ext):
             else os.environ["AIDGE_INSTALL"]
         )
 
+        # using ninja as default build system to build faster and with the same compiler as on windows
         build_gen = (
             ["-G", os.environ["AIDGE_BUILD_GEN"]]
             if "AIDGE_BUILD_GEN" in os.environ
-            else [
-                -G,
-                "Ninja",
-            ]  # using ninja as default build system to build faster and with the same compiler as on windows
+            else ["-G", "Ninja"]
         )
 
         self.spawn(
-- 
GitLab