Skip to content

Commit

Permalink
Fix loading args from file for incept.
Browse files Browse the repository at this point in the history
Signed-off-by: pfeairheller <[email protected]>
  • Loading branch information
pfeairheller committed Oct 7, 2023
1 parent ab432e5 commit 32053c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/keri/app/cli/commands/incept.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ def mergeArgsWithFile(args):

incept_opts = config.loadFileOptions(args.file, InceptOptions) if args.file != '' else emptyOptions()

if args.transferable is not None:
incept_opts.transferable = args.transferable
incept_opts.transferable = True if args.transferable else incept_opts.transferable
if len(args.wits) > 0:
incept_opts.wits = args.wits
if args.icount is not None:
Expand Down

0 comments on commit 32053c3

Please sign in to comment.