ALMOST done args

This commit is contained in:
brent s
2020-04-03 18:27:43 -04:00
parent 9c2b26bf7f
commit e221401e1c
4 changed files with 165 additions and 49 deletions

View File

@@ -7,7 +7,11 @@ def main():
rawargs = vaultpass.args.parseArgs()
args = rawargs.parse_args()
if not args.oper:
args.oper = 'show'
rawargs.print_help()
return(None)
if args.oper == 'help':
rawargs.print_help()
return(None)
import pprint
pprint.pprint(vars(args))
return(None)