Skip to content

Commit

Permalink
better wording on cmd line
Browse files Browse the repository at this point in the history
  • Loading branch information
relleums committed Aug 20, 2024
1 parent 9f7631b commit 58cada6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyslidescape/apps/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ def main():
)
compile_cmd.add_argument(
"work_dir",
metavar="PATH",
metavar="IN_PATH",
type=str,
help=("The working directory to contain the raw presentation slides."),
)
compile_cmd.add_argument(
"out_path",
metavar="PATH",
metavar="OUT_PATH",
type=str,
help=("Path of the output PDF."),
)
compile_cmd.add_argument(
"-i",
"--num_threads",
metavar="NUM",
metavar="NUM_THREADS",
type=int,
help=("The number of threads to use."),
required=False,
Expand Down

0 comments on commit 58cada6

Please sign in to comment.