From 4e195662f63dbbe988990aa42cd1ce5475d92574 Mon Sep 17 00:00:00 2001 From: MichaelClifford Date: Thu, 3 Nov 2022 12:37:53 -0400 Subject: [PATCH] fix queue table formating --- src/codeflare_sdk/utils/pretty_print.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/codeflare_sdk/utils/pretty_print.py b/src/codeflare_sdk/utils/pretty_print.py index b4bae44b7..f7fa6aab5 100644 --- a/src/codeflare_sdk/utils/pretty_print.py +++ b/src/codeflare_sdk/utils/pretty_print.py @@ -23,7 +23,6 @@ def print_app_wrappers_status(app_wrappers:List[AppWrapper]): status = app_wrapper.status.value table = Table(box=box.ASCII_DOUBLE_HEAD, title="[bold] :rocket: List of CodeFlare clusters in queue:rocket:") - table.add_row("") #empty row for spacing table.add_column("Name", style="cyan", no_wrap=True) table.add_column("Status", style="magenta") table.add_row(name,status)