Skip to content

Commit

Permalink
Remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrost-mo committed Feb 27, 2023
1 parent af65e7e commit 9219449
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/CSET/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit 9219449

Please # to comment.