From 13463f5c4f0d7b3f8aaee253986d160e608d0ee0 Mon Sep 17 00:00:00 2001 From: cpacker Date: Thu, 19 Oct 2023 16:32:58 -0700 Subject: [PATCH] cleanup --- main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.py b/main.py index 3cb1010b..b44b0adf 100644 --- a/main.py +++ b/main.py @@ -34,11 +34,9 @@ flags.DEFINE_string("archival_storage_sqldb", default="", required=False, help=" def clear_line(): - # print(f"os.name = {os.name}") if os.name == 'nt': # for windows console.print("\033[A\033[K", end="") else: # for linux - # console.print("\033[2K\033[G", end="") sys.stdout.write("\033[2K\033[G") sys.stdout.flush()