Skip to content

Commit

Permalink
cleanup: progress bars
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Aug 5, 2022
1 parent 6e36e2f commit 720c6c2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions adbdgl_adapter/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand All @@ -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")

Expand Down

0 comments on commit 720c6c2

Please sign in to comment.