From 720c6c29bccd9cae460cb2c0605b814ea11bb24c Mon Sep 17 00:00:00 2001 From: aMahanna Date: Fri, 5 Aug 2022 00:19:54 -0400 Subject: [PATCH] cleanup: progress bars --- adbdgl_adapter/adapter.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/adbdgl_adapter/adapter.py b/adbdgl_adapter/adapter.py index d5082eb..71af138 100644 --- a/adbdgl_adapter/adapter.py +++ b/adbdgl_adapter/adapter.py @@ -451,9 +451,9 @@ def __fetch_adb_docs( """ with progress( - f"Export: {col}", - text_style="#97C423", - spinner_style="#7D3B04", + f"(ADB → DGL): {col}", + text_style="#319BF5", + spinner_style="#FCFDFC", ) as p: p.add_task("__fetch_adb_docs") @@ -479,9 +479,9 @@ def __insert_adb_docs( col = doc_type if type(doc_type) is str else doc_type[1] with progress( - f"Import: {doc_type} ({len(df)})", - text_style="#825FE1", - spinner_style="#3AA7F4", + f"(DGL → ADB): {doc_type} ({len(df)})", + text_style="#97C423", + spinner_style="#994602", ) as p: p.add_task("__insert_adb_docs")