We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c7243a + e6c115f commit 1234450Copy full SHA for 1234450
ibllib/pipes/dynamic_pipeline.py
@@ -187,7 +187,7 @@ def _load_acquisition_description(session_path):
187
try:
188
# v7 sessions used a different folder name for task data;
189
# v8 sessions should always have a description file
190
- assert session_path.joinpath('raw_behavior_data').exists()
+ assert Path(session_path).joinpath('raw_behavior_data').exists()
191
acquisition_description = acquisition_description_legacy_session(session_path)
192
assert acquisition_description
193
except (AssertionError, ValueError):
0 commit comments