Skip to content

Commit

Permalink
Add ellipsis to green prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sann5 committed Jan 19, 2024
1 parent 205913a commit 8233505
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions q2_moshpit/eggnog/_dbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def fetch_ncbi_taxonomy() -> NCBITaxonomyDirFmt:
version_path = os.path.join(str(ncbi_data), "version.tsv")

# Download zip file
print(colorify("Downloading *.dmp files"))
print(colorify("Downloading *.dmp files..."))
run_command(
cmd=[
"wget", "-O", zip_path,
Expand All @@ -272,7 +272,7 @@ def fetch_ncbi_taxonomy() -> NCBITaxonomyDirFmt:
run_command(cmd=["rm", zip_path])

# Download proteins
print(colorify("Downloading proteins file (~15 GB)"))
print(colorify("Downloading proteins file (~15 GB)..."))
run_command(
cmd=[
"wget", "-O", proteins_path,
Expand All @@ -282,12 +282,12 @@ def fetch_ncbi_taxonomy() -> NCBITaxonomyDirFmt:
)

# Constructing version file
print(colorify("Constructing version file"))
print(colorify("Constructing version file..."))
_write_version_tsv(nodes_path, names_path, proteins_path, version_path)

# Return object
print(colorify(
"Done! Moving data from temporary directory to final location."
"Done! Moving data from temporary directory to final location..."
))
return ncbi_data

Expand Down

0 comments on commit 8233505

Please sign in to comment.