Remove secrets and auto-start actions and update imports
This commit is contained in:
0
bin/helpers/__init__.py
Normal file
0
bin/helpers/__init__.py
Normal file
@@ -7,6 +7,8 @@ import random
|
||||
import shutil
|
||||
import datetime
|
||||
|
||||
"""Helper functions for the dotfiles system."""
|
||||
|
||||
try:
|
||||
import pyfiglet
|
||||
except ImportError:
|
||||
@@ -157,7 +159,7 @@ def ensure_dependencies():
|
||||
if missing_packages:
|
||||
printfe("yellow", f"Missing dependencies: {', '.join(missing_packages)}")
|
||||
install = input("Would you like to install them now? (y/n): ").lower()
|
||||
if install == "y" or install == "yes":
|
||||
if install in ("y", "yes"):
|
||||
printfe("cyan", "Installing missing dependencies...")
|
||||
for package in missing_packages:
|
||||
printfe("blue", f"Installing {package}...")
|
||||
|
||||
Reference in New Issue
Block a user