Skip to content

Commit

Permalink
Merge branch 'dev' into make_connectivity_tests_explicitly_skippable
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Sep 15, 2022
2 parents 9f31ca7 + aa76674 commit 5b750b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nwbinspector/nwbinspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def inspect_all(
# Manual identifier check over all files in the folder path
identifiers = defaultdict(list)
for nwbfile_path in nwbfiles:
with pynwb.NWBHDF5IO(path=nwbfile_path, mode="r", driver=driver) as io:
with pynwb.NWBHDF5IO(path=nwbfile_path, mode="r", load_namespaces=True, driver=driver) as io:
nwbfile = robust_s3_read(io.read)
identifiers[nwbfile.identifier].append(nwbfile_path)
if len(identifiers) != len(nwbfiles):
Expand Down

0 comments on commit 5b750b6

Please sign in to comment.