From 25648f483f17428715a41c31eaad9c837f5e0198 Mon Sep 17 00:00:00 2001 From: acassimiro Date: Fri, 23 Aug 2024 14:43:21 -0300 Subject: [PATCH] Removing dead code --- rust-lite/src/rust_lite/cli.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/rust-lite/src/rust_lite/cli.py b/rust-lite/src/rust_lite/cli.py index 6cb9331..655090f 100644 --- a/rust-lite/src/rust_lite/cli.py +++ b/rust-lite/src/rust_lite/cli.py @@ -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