Skip to content

Commit dd2f93d

Browse files
authored
Merge pull request #22 from SpikeInterface/fix_typo
Fix var name
2 parents d2c3beb + 254c3d0 commit dd2f93d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pip install ndx_probeinterface
99

1010
## Usage
1111

12-
### Going from a `probeinterface.Probe`/``ProbeGroup` object to a `ndx_probeinterface.Probe` object
12+
### Going from a `probeinterface.Probe`/`ProbeGroup` object to a `ndx_probeinterface.Probe` object
1313
```python
1414
import ndx_probeinterface
1515

src/pynwb/ndx_probeinterface/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def to_probeinterface(ndx_probe) -> Probe:
102102
if shank_ids is not None:
103103
shank_ids = [item for sublist in shank_ids for item in sublist]
104104
if device_channel_indices is not None:
105-
device_channel_indices = [item for sublist in channel_indices for item in sublist]
105+
device_channel_indices = [item for sublist in device_channel_indices for item in sublist]
106106

107107
probeinterface_probe = Probe(ndim=ndim, si_units=unit)
108108
probeinterface_probe.set_contacts(

0 commit comments

Comments
 (0)