added rudimentary conductor for job execution

This commit is contained in:
PatchOfScotland
2023-01-26 13:47:17 +01:00
parent 75de8147be
commit 31d06af5bf
18 changed files with 1895 additions and 545 deletions

View File

@ -15,8 +15,8 @@ class FileEventJupyterNotebookRule(BaseRule):
f"{pattern.name} does not identify Recipe {recipe.name}. It "
f"uses {pattern.recipe}")
def _is_valid_pattern(self, pattern:FileEventPattern) -> None:
def _is_valid_pattern(self, pattern:FileEventPattern)->None:
check_type(pattern, FileEventPattern)
def _is_valid_recipe(self, recipe:JupyterNotebookRecipe) -> None:
def _is_valid_recipe(self, recipe:JupyterNotebookRecipe)->None:
check_type(recipe, JupyterNotebookRecipe)