Remove unused argument.

This commit is contained in:
Romain Dorgueil
2017-11-01 18:49:29 +01:00
parent ac6cba02cb
commit b5a8af3efe

View File

@ -23,6 +23,5 @@ def get_graph():
# The __main__ block actually execute the graph. # The __main__ block actually execute the graph.
if __name__ == '__main__': if __name__ == '__main__':
parser = bonobo.get_argument_parser() parser = bonobo.get_argument_parser()
parser.add_argument('-v', action='append', dest='vars')
with bonobo.parse_args(parser): with bonobo.parse_args(parser):
bonobo.run(get_graph()) bonobo.run(get_graph())