Skip to content

Commit e5574e3

Browse files
author
Yoan Moscatelli
committed
🎨 comment indentation
1 parent 68087d5 commit e5574e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def install_package(package_name, version):
6868
os.makedirs(f"tmp_{package_name}", exist_ok=True)
6969
# Extract tarball
7070
Archive(f"{package_name}_v{version}.tar.gz").extractall(f"tmp_{package_name}")
71-
# Instead of shutil.move, use shutil.copy and os.remove for cross-device compatibility
71+
# Instead of shutil.move, use shutil.copy and os.remove for cross-device compatibility
7272
shutil.copy(f"tmp_{package_name}/{package_name}", f"/usr/local/bin/{package_name}")
7373
# Delete the original file after copying
7474
os.remove(f"tmp_{package_name}/{package_name}")

0 commit comments

Comments
 (0)