Skip to content

Commit

Permalink
Merge branch 'main' into retreat-user-test-3
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Oct 16, 2023
2 parents 67d1c9a + 60f3427 commit b29e8f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyflask/manageNeuroconv/manage_neuroconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ def generate_dataset(test_data_directory_path: str):


def inspect_nwb_file(payload):
from nwbinspector import inspect_nwbfile
from nwbinspector import inspect_nwbfile, load_config
from nwbinspector.nwbinspector import InspectorOutputJSONEncoder

messages = list(
Expand All @@ -530,7 +530,7 @@ def inspect_nwb_file(payload):
"check_description",
"check_data_orientation",
], # TODO: remove when metadata control is exposed
config="dandi",
config=load_config(filepath_or_keyword="dandi"),
**payload,
)
)
Expand All @@ -539,7 +539,7 @@ def inspect_nwb_file(payload):


def inspect_nwb_folder(payload):
from nwbinspector import inspect_all
from nwbinspector import inspect_all, load_config
from nwbinspector.nwbinspector import InspectorOutputJSONEncoder

messages = list(
Expand All @@ -549,7 +549,7 @@ def inspect_nwb_folder(payload):
"check_description",
"check_data_orientation",
], # TODO: remove when metadata control is exposed
config="dandi",
config=load_config(filepath_or_keyword="dandi"),
**payload,
)
)
Expand Down

0 comments on commit b29e8f4

Please sign in to comment.