Menuconfig Implementation and auto-qemu refactoring (#44)
[lunaix-os.git] / lunaix-os / scripts / build-tools / lcfg / types.py
index 123f6a926d45522356cc7abf3a1f632666ddb609..8fc373de9074b51d156058824974ac08b6af16c5 100644 (file)
@@ -70,8 +70,8 @@ class MultipleChoiceType(PrimitiveType):
         return None in self._type
     
     def __str__(self) -> str:
-        accepted = [f"  {t}" for t in self._type]
+        accepted = [f"  {t}" for t in self._type]
         return "\n".join([
-            "choose one: \n",
+            "choose one:",
             *accepted
         ])