Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
legnaleurc committed Dec 17, 2023
1 parent a631747 commit 1445852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drive/app/jav/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async def main(args: list[str] | None = None) -> int:
command = parser.add_subparsers()

g_parser = command.add_parser("generate", aliases=["g"])
g_parser.add_argument("path", required=True, type=str)
g_parser.add_argument("path", type=str)
g_parser.set_defaults(action=_generate)

a_parser = command.add_parser("apply", aliases=["a"])
Expand Down

0 comments on commit 1445852

Please sign in to comment.