reformatted imports to work better on other machines, plus added benchmarking to project
This commit is contained in:
@ -1,3 +1,3 @@
|
||||
|
||||
from rules.file_event_jupyter_notebook_rule import FileEventJupyterNotebookRule
|
||||
from rules.file_event_python_rule import FileEventPythonRule
|
||||
from .file_event_jupyter_notebook_rule import FileEventJupyterNotebookRule
|
||||
from .file_event_python_rule import FileEventPythonRule
|
@ -6,10 +6,10 @@ and JupyterNotebookRecipe.
|
||||
Author(s): David Marchant
|
||||
"""
|
||||
|
||||
from core.base_rule import BaseRule
|
||||
from core.correctness.validation import check_type
|
||||
from patterns.file_event_pattern import FileEventPattern
|
||||
from recipes.jupyter_notebook_recipe import JupyterNotebookRecipe
|
||||
from meow_base.core.base_rule import BaseRule
|
||||
from meow_base.core.correctness.validation import check_type
|
||||
from meow_base.patterns.file_event_pattern import FileEventPattern
|
||||
from meow_base.recipes.jupyter_notebook_recipe import JupyterNotebookRecipe
|
||||
|
||||
# TODO potentailly remove this and just invoke BaseRule directly, as does not
|
||||
# add any functionality other than some validation.
|
||||
|
@ -6,10 +6,10 @@ and PythonRecipe.
|
||||
Author(s): David Marchant
|
||||
"""
|
||||
|
||||
from core.base_rule import BaseRule
|
||||
from core.correctness.validation import check_type
|
||||
from patterns.file_event_pattern import FileEventPattern
|
||||
from recipes.python_recipe import PythonRecipe
|
||||
from meow_base.core.base_rule import BaseRule
|
||||
from meow_base.core.correctness.validation import check_type
|
||||
from meow_base.patterns.file_event_pattern import FileEventPattern
|
||||
from meow_base.recipes.python_recipe import PythonRecipe
|
||||
|
||||
# TODO potentailly remove this and just invoke BaseRule directly, as does not
|
||||
# add any functionality other than some validation.
|
||||
|
Reference in New Issue
Block a user