Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/spikeinterface/extractors/iblextractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def __init__(
pid: str | None = None,
stream_name: str | None = None,
load_sync_channel: bool = False,
cache_folder: Optional[Union[Path, str]] = None,
cache_folder: Optional[Path | str] = None,
remove_cached: bool = True,
stream: bool = True,
one: "one.api.OneAlyx" = None,
Expand All @@ -165,7 +165,7 @@ def __init__(
stream_name is not None
), f"Multiple streams found for session. Please specify a stream name from {stream_names}."
assert stream_name in stream_names, (
f"The `stream_name` '{stream_name}' was not found in the available listing for session '{session}'! "
f"The `stream_name` '{stream_name}' is not available for this experiment {eid}! "
f"Please choose one of {stream_names}."
)
else:
Expand Down