Skip to content

Commit 4b1f8a6

Browse files
committed
Refactoring: core logic and update UI
1 parent 3fa4444 commit 4b1f8a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

workbench_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def check_and_install_deps(log: Callable[[str], None] | None = None) -> None:
327327
log(f"Install step failed: {e}")
328328
log("If tools are still not detected, you may need to restart your shell/terminal.")
329329

330-
# Write helper scripts for manual installation
330+
# Write helper scripts for manual installation.
331331
ps1 = scripts_dir / "install_deps.ps1"
332332
ps1.write_text(
333333
"winget source update\n"

yt_audio_backup_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ def _check_and_install_deps_async(self) -> None:
12391239

12401240
def worker():
12411241
try:
1242-
check_and_install_deps()
1242+
check_and_install_deps(log=self.log)
12431243
finally:
12441244
self._busy_install = False
12451245
self.status_var.set("Idle")

0 commit comments

Comments
 (0)