refactored correctness dir away from core sub dir into either functionality or core as appropriate

This commit is contained in:
PatchOfScotland
2023-03-31 15:55:16 +02:00
parent 5952b02be4
commit 547d5fefce
35 changed files with 69 additions and 67 deletions

View File

@ -10,7 +10,7 @@ from os import getenv
from papermill.translators import papermill_translators
from typing import Any, Dict, List
from meow_base.core.correctness.validation import check_script, check_type
from meow_base.functionality.validation import check_script, check_type
# Adapted from: https://github.com/rasmunk/notebook_parameterizer
def parameterize_jupyter_notebook(jupyter_notebook:Dict[str,Any],
@ -151,4 +151,4 @@ def parameterize_bash_script(script:List[str], parameters:Dict[str,Any],
# Validate that the parameterized notebook is still valid
check_script(output_script)
return output_script
return output_script