From 2772fde169529a03ae473ab604b3e67546540342 Mon Sep 17 00:00:00 2001 From: Larry Ruckman Date: Tue, 14 Jan 2025 08:56:41 -0800 Subject: [PATCH] set pgp4=true as arg default --- software/scripts/devGui.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/software/scripts/devGui.py b/software/scripts/devGui.py index 07bd89f..3a3ca8e 100755 --- a/software/scripts/devGui.py +++ b/software/scripts/devGui.py @@ -58,7 +58,8 @@ def __call__( self , parser, namespace,values, option_string = None): parser.add_argument( "--pgp4", type = argBool, - required = True, + required = False, + default = True, help = "False = PGP2b, True = PGPv4", ) @@ -190,7 +191,7 @@ def __call__( self , parser, namespace,values, option_string = None): # Otherwise assume it is relative in a standard development directory structure except: - +q # Check for release zip file path if args.releaseZip is not None: pyrogue.addLibraryPath(args.releaseZip + '/python')