From 4408fbabceb7a9be5519bcd42e05ee21def4eb05 Mon Sep 17 00:00:00 2001 From: pstlouis Date: Sun, 16 Jun 2024 19:13:20 -0400 Subject: [PATCH] change elif to if in argparse logic Signed-off-by: pstlouis --- aries_cloudagent/config/argparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aries_cloudagent/config/argparse.py b/aries_cloudagent/config/argparse.py index ca12b0e62a..e9a81158fa 100644 --- a/aries_cloudagent/config/argparse.py +++ b/aries_cloudagent/config/argparse.py @@ -680,7 +680,7 @@ def get_settings(self, args: Namespace) -> dict: if args.storage_type: settings["storage_type"] = args.storage_type - elif args.endpoint: + if args.endpoint: settings["default_endpoint"] = args.endpoint[0] settings["additional_endpoints"] = args.endpoint[1:]