Skip to content
Snippets Groups Projects
Commit 392a92c5 authored by Jeremy Auguste's avatar Jeremy Auguste
Browse files

Removed unused arguments

parent 710543a9
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ def argparser(): ...@@ -43,7 +43,7 @@ def argparser():
def prepare_oarsub(gpu, host, core, time, def prepare_oarsub(gpu, host, core, time,
command=None, argument=None, command=None,
interactive=False, interactive=False,
name=None, output_directory=None, name=None, output_directory=None,
besteffort=False, besteffort=False,
...@@ -112,7 +112,7 @@ def main(): ...@@ -112,7 +112,7 @@ def main():
raise RuntimeError("'{}' is not a directory!".format(args.directory)) raise RuntimeError("'{}' is not a directory!".format(args.directory))
oar_command = prepare_oarsub(args.gpu, args.host, args.core, args.time, oar_command = prepare_oarsub(args.gpu, args.host, args.core, args.time,
command=args.command, argument=args.argument, command=args.command,
interactive=args.interactive, interactive=args.interactive,
name=args.name, output_directory=args.directory, name=args.name, output_directory=args.directory,
besteffort=args.besteffort, checkpoint=args.checkpoint, besteffort=args.besteffort, checkpoint=args.checkpoint,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment