Skip to content

Commit

Permalink
minor progress_bar update
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Apr 19, 2024
1 parent b746244 commit 38d1f84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dcicutils/progress_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def remove_extra_trailing_spaces(text: str) -> str: # noqa
spinc = spina[spini % spinn] if not ("100%|" in text) else "✓" ; spini += 1 # noqa
text = replace_first(text, sentinel_internal, f" {spinc}")
text = replace_first(text, "%|", "% ◀|")
text = remove_extra_trailing_spaces(text)
text = remove_extra_trailing_spaces(text) + f"{spinc} "
# Another oddity: for the rate sometimes tqdm intermittently prints
# something like "1.54s/" rather than "1.54/s"; something to do with
# the unit we gave, which is empty; idunno; just replace it here.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcicutils"
version = "8.8.3.1b18" # TODO: To become 8.8.4
version = "8.8.3.1b19" # TODO: To become 8.8.4
description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources"
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 38d1f84

Please sign in to comment.