Skip to content

Commit

Permalink
fix typo in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashof committed Oct 11, 2024
1 parent ed904c8 commit df1fc84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyGCodeDecode/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _get_out_dir(out_dir: pathlib.Path | None, g_code_file: pathlib.Path) -> pat
printer_setup = setup(
presets_file=presets_file,
printer=printer_name,
layer_cue=args.layer_queue,
layer_cue=args.layer_cue,
)

# running the simulation by creating a simulation object
Expand Down Expand Up @@ -203,13 +203,13 @@ def _main(*args):
metavar="<PATH>",
)
plot_parser.add_argument(
"-lq",
"--layer_queue",
"-lc",
"--layer_cue",
action="store",
help="The queue indicating a layer switch in the GCode.",
help="The cue indicating a layer switch in the GCode.",
default=None,
type=str,
metavar="<QUEUE>",
metavar="<cue>",
)

# parse the arguments
Expand Down

0 comments on commit df1fc84

Please sign in to comment.