Skip to content

Commit

Permalink
order input image as in vse-sync-test
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunyez committed Oct 5, 2023
1 parent 9d55655 commit 9686bc9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/vse_sync_pp/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@ def main():
'-c', '--canonical', action='store_true',
help="input contains canonical data",
)
aparser.add_argument(
'output',
help="output image filename",
)
aparser.add_argument(
'input',
help="input file, or '-' to read from stdin",
)
aparser.add_argument(
'parser', choices=tuple(PARSERS),
help="data to parse from input",
)
aparser.add_argument(
'output',
help="output image filename",
help="data to plot from input",
)
args = aparser.parse_args()
parser = PARSERS[args.parser]()
Expand Down

0 comments on commit 9686bc9

Please sign in to comment.