Solved attribut bug

This commit is contained in:
Kevin Veen-Birkenbach
2025-04-21 13:39:51 +02:00
parent 39573072a1
commit 0c3f434314

View File

@@ -226,7 +226,14 @@ For detailed help on each command, use:
for subcommand in subcommands:
if args.command == subcommand:
if args.command == "clone":
clone_repos(selected, REPOSITORIES_BASE_DIR, ALL_REPOSITORIES, args.preview, no_verification=args.no_verification, clone_mode=args.clone_mode)
clone_repos(
selected,
REPOSITORIES_BASE_DIR,
ALL_REPOSITORIES,
args.preview,
args.no_verification,
args.clone_mode
)
elif args.command == "pull":
from pkgmgr.pull_with_verification import pull_with_verification
pull_with_verification(selected, REPOSITORIES_BASE_DIR, ALL_REPOSITORIES, args.extra_args, no_verification=args.no_verification, preview=args.preview)