From 30d781faa287f3be274ccb69b59f6d682ba9677a Mon Sep 17 00:00:00 2001
From: Daniel Nemergut <dnemergu@nrao.edu>
Date: Thu, 26 Oct 2023 10:44:48 -0400
Subject: [PATCH] Removed default list from a bad copy, explicitly stating
 action=store which isn't necessary but just in case

---
 apps/cli/utilities/aat_wrest/aat_wrest/wrest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/cli/utilities/aat_wrest/aat_wrest/wrest.py b/apps/cli/utilities/aat_wrest/aat_wrest/wrest.py
index 00b5758ba..8de40dcc8 100644
--- a/apps/cli/utilities/aat_wrest/aat_wrest/wrest.py
+++ b/apps/cli/utilities/aat_wrest/aat_wrest/wrest.py
@@ -110,7 +110,7 @@ def parser() -> argparse.ArgumentParser:
     arg_parser.add_argument(
         "--curator",
         nargs=1,
-        default=[],
+        action="store",
         required=False,
         help="Find the product information necessary to run curator on the provided product locator",
     )
-- 
GitLab