From f7b688ed60a717cd7f58153d7288f002672bda32 Mon Sep 17 00:00:00 2001 From: thatgirlginger Date: Mon, 21 Sep 2026 21:18:47 -0500 Subject: [PATCH 1/2] updated lxml requirement --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fd12516..476d90d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ charade==1.0.3 Genshi==0.7.7 ipaddr==2.2.0 keyring==24.2.0 -lxml==4.9.3 +lxml==6.1.3 ndg_httpsclient==0.5.1 pyasn1==0.5.0 pytest==7.4.3 From 621f594366bf77426afc41b5d32c0ec6820d5b6b Mon Sep 17 00:00:00 2001 From: thatgirlginger Date: Wed, 23 Sep 2026 12:40:36 -0500 Subject: [PATCH 2/2] updated Args, OD-1715 --- shared_python/Args.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/shared_python/Args.py b/shared_python/Args.py index b543b99..2fa2b8f 100755 --- a/shared_python/Args.py +++ b/shared_python/Args.py @@ -43,9 +43,6 @@ def _process_args(self): ) # General archive-specific settings - parser.add_argument( - "-a", "--archive_type", type=str, choices=["AA"], help="Type of archive: AA" - ) parser.add_argument( "-df", "--default_fandom", type=str, help="Default fandom to use" ) @@ -155,9 +152,6 @@ def _process_args(self): else args.archive_name ) - while args.archive_type is None or args.archive_type not in ["AA"]: - args.archive_type = input("Type of archive (AA): ") - return args def _print_args(self, args):