Skip to content

Commit

Permalink
undefined varaible ibl extractor (#2906)
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin authored May 24, 2024
1 parent f9e714f commit b25460f
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit b25460f

Please sign in to comment.