From 9219449103902ff50fe8ee43063856e21a4caaca Mon Sep 17 00:00:00 2001 From: James Frost Date: Mon, 27 Feb 2023 10:22:56 +0000 Subject: [PATCH] Remove commented out code --- src/CSET/__init__.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/CSET/__init__.py b/src/CSET/__init__.py index a93638a84..c8e69a929 100644 --- a/src/CSET/__init__.py +++ b/src/CSET/__init__.py @@ -46,11 +46,6 @@ def main(): "recipe_file", type=Path, help="recipe file to execute" ) parser_operators.set_defaults(func=run_operators) - - # # Run task - # parser_task = subparsers.add_parser("task", help="run a MET task") - # parser_task.set_defaults(func=run_task) - args = parser.parse_args() # Logging verbosity if args.verbose >= 2: @@ -68,7 +63,3 @@ def run_operators(args): from .operators._internal import execute_recipe execute_recipe(args.recipe_file, args.input_file, args.output_file) - - -# def run_task(args): -# raise NotImplementedError