Просмотр исходного кода

fix(core): add tests directory to gitignore and clean up display formatting

xcad 4 месяцев назад
Родитель
Сommit
ad4e081685
2 измененных файлов с 3 добавлено и 1 удалено
  1. 3 0
      .gitignore
  2. 0 1
      cli/core/display.py

+ 3 - 0
.gitignore

@@ -23,3 +23,6 @@
 
 # Installation tracking
 .installed-version
+
+# Test deployments
+/tests/

+ 0 - 1
cli/core/display.py

@@ -414,7 +414,6 @@ class DisplayManager:
                     needs_text = f" [dim](needs: {needs_list})[/dim]"
                 header_text = f"[bold]{section.title}{required_text}{needs_text}{disabled_text}[/bold]"
             variables_table.add_row(header_text, "", "", "")
-
             for var_name, variable in section.variables.items():
                 row_style = "bright_black" if is_dimmed else None