Commit 8b7b99f8 authored by catboxanon's avatar catboxanon Committed by GitHub

fix: Only import tqdm when needed

parent 95821f01
......@@ -7,7 +7,6 @@ import importlib.util
import platform
import json
from functools import lru_cache
import tqdm
from modules import cmd_args, errors
from modules.paths_internal import script_path, extensions_dir
......@@ -249,6 +248,7 @@ def run_extensions_installers(settings_file):
return
with startup_timer.subcategory("run extensions installers"):
import tqdm
progress_bar = tqdm.tqdm(list_extensions(settings_file))
for dirname_extension in progress_bar:
progress_bar.set_description(f"Installing {dirname_extension}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment