Skip to content
Snippets Groups Projects
Commit 26f3dcec authored by Tomáš Orviský's avatar Tomáš Orviský
Browse files

File argument is now without flag

parent a7e95f0e
Branches
No related merge requests found
...@@ -42,9 +42,7 @@ if __name__ == "__main__": ...@@ -42,9 +42,7 @@ if __name__ == "__main__":
argparser = argparse.ArgumentParser(prog="pyPlantUML") argparser = argparse.ArgumentParser(prog="pyPlantUML")
argparser.add_argument( argparser.add_argument("file")
"-f", "--file", required=True, type=str, help="Path to source plantUml file."
)
argparser.add_argument("-a", "--animate", action="store_true") argparser.add_argument("-a", "--animate", action="store_true")
args = argparser.parse_args() args = argparser.parse_args()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment