We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5970be4 commit 16bf57cCopy full SHA for 16bf57c
src/pynwb/ndx_probeinterface/io.py
@@ -25,7 +25,7 @@ def from_probeinterface(probe_or_probegroup: Union[Probe, ProbeGroup]) -> List[D
25
devices: list
26
The list of ndx-probeinterface Probe devices
27
"""
28
- assert isinstance(probe_or_probegroup, (Probe, ProbeGroup)), f"The input can be a Probe or ProbeGroup, not {type(probe_or_probegroup)}"
+ assert isinstance(probe_or_probegroup, (Probe, ProbeGroup)), f"The input must be a Probe or ProbeGroup, not {type(probe_or_probegroup)}"
29
if isinstance(probe_or_probegroup, Probe):
30
probes = [probe_or_probegroup]
31
else:
0 commit comments