Skip to content

Commit

Permalink
Removing dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
ACassimiro committed Aug 23, 2024
1 parent 2fbfecc commit 25648f4
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions rust-lite/src/rust_lite/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,30 +64,14 @@ def _create_argument_parser() -> ArgumentParser:

command_parser = parser.add_subparsers(dest='command', required=True)

# command_parser.add_parser('version', help='Print Rust-Lite version and exit.', parents=[rust_lite_cli_args.logging_args])

run_args = command_parser.add_parser(
'run',
help='Run Rust-Lite program.',
parents=[
rust_lite_cli_args.logging_args,
# rust_lite_cli_args.target_args,
# rust_lite_cli_args.k_args,
],
)
run_args.add_argument('input_file', type=file_path, help='Path to input file.')
# run_args.add_argument(
# '--output',
# type=PrintOutput,
# choices=list(PrintOutput),
# )
# run_args.add_argument(
# '--sort',
# dest='sort',
# default=None,
# type=KSort,
# help='Sort to parse input as.',
# )

return parser

Expand Down

0 comments on commit 25648f4

Please sign in to comment.