Lines Matching refs:args
23 def copy_strip(args):24 shutil.copy(args.input, args.output)25 subprocess.call([args.strip, args.output], shell=False)34 args = parser.parse_args()35 copy_strip(args)36 if args.mini_debug == "true":41 ['python3', script_path, '--unstripped-path', args.input, '--stripped-path', args.output,