Skip to content

Commit

Permalink
change elif to if in argparse logic
Browse files Browse the repository at this point in the history
Signed-off-by: pstlouis <[email protected]>
  • Loading branch information
PatStLouis authored and ff137 committed Jun 25, 2024
1 parent 3b2897a commit 4408fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aries_cloudagent/config/argparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:]

Expand Down

0 comments on commit 4408fba

Please sign in to comment.