From 0230fadac9156d0c81e88e6fca0834b965e1b262 Mon Sep 17 00:00:00 2001 From: Christopher Singley Date: Sun, 15 Nov 2020 15:01:04 -0600 Subject: [PATCH] ofxget: move --nonewfileuid to format arg group --- ofxtools/scripts/ofxget.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ofxtools/scripts/ofxget.py b/ofxtools/scripts/ofxget.py index 237537a..fccb606 100644 --- a/ofxtools/scripts/ofxget.py +++ b/ofxtools/scripts/ofxget.py @@ -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( @@ -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