Skip to content

Commit

Permalink
ofxget: move --nonewfileuid to format arg group
Browse files Browse the repository at this point in the history
  • Loading branch information
csingley committed Nov 15, 2020
1 parent 2c33008 commit 0230fad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ofxtools/scripts/ofxget.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,6 @@ def add_subparser(
default=None,
help="Skip SSL certificate verification",
)
parser.add_argument(
"--nonewfileuid",
action="store_true",
default=None,
help="Use 'NONE' instead of generating a UID for NEWFILEUID in header",
)

if format:
parser.add_argument(
Expand Down Expand Up @@ -286,6 +280,12 @@ def add_format_group(parser: argparse.ArgumentParser) -> argparse._ArgumentGroup
default=None,
help="Insert newlines and whitespace indentation",
)
group.add_argument(
"--nonewfileuid",
action="store_true",
default=None,
help="Use 'NONE' instead of generating a UID for NEWFILEUID in header",
)

return group

Expand Down

0 comments on commit 0230fad

Please sign in to comment.