From 0c3f434314bc50eacc6ec9fe3350deee89e2d91f Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Mon, 21 Apr 2025 13:39:51 +0200 Subject: [PATCH] Solved attribut bug --- main.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index f87e52c..763099b 100755 --- a/main.py +++ b/main.py @@ -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)