Skip to content

Commit 16bf57c

Browse files
committed
can -> must
1 parent 5970be4 commit 16bf57c

File tree

1 file changed

+1
-1
lines changed
  • src/pynwb/ndx_probeinterface

1 file changed

+1
-1
lines changed

src/pynwb/ndx_probeinterface/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def from_probeinterface(probe_or_probegroup: Union[Probe, ProbeGroup]) -> List[D
2525
devices: list
2626
The list of ndx-probeinterface Probe devices
2727
"""
28-
assert isinstance(probe_or_probegroup, (Probe, ProbeGroup)), f"The input can be a Probe or ProbeGroup, not {type(probe_or_probegroup)}"
28+
assert isinstance(probe_or_probegroup, (Probe, ProbeGroup)), f"The input must be a Probe or ProbeGroup, not {type(probe_or_probegroup)}"
2929
if isinstance(probe_or_probegroup, Probe):
3030
probes = [probe_or_probegroup]
3131
else:

0 commit comments

Comments
 (0)