Skip to content

Commit

Permalink
fall back to tqdm if tqdm-loggable is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Jun 1, 2024
1 parent e5d7412 commit ff9cf3d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
import py7zr
import requests
import yaml
from tqdm_loggable.auto import tqdm
try:
from tqdm_loggable.auto import tqdm
except ModuleNotFoundError:
from tqdm import tqdm


url_repo_qtc_fmt = "https://download.qt.io/{release_type}_releases/qtcreator/{qtcv_maj}/{qtcv_full}/installer_source/{os}_{arch}/"
Expand Down

0 comments on commit ff9cf3d

Please sign in to comment.