Skip to content

Commit 68fa77c

Browse files
committed
update docstring
1 parent cd9501c commit 68fa77c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

element_array_ephys/probe.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,7 @@ def create_neuropixels_probe(probe_type: str = "neuropixels 1.0 - 3A"):
148148
)
149149
with ProbeType.connection.transaction:
150150
ProbeType.insert1(probe_type, skip_duplicates=True)
151-
ProbeType.Electrode.insert(
152-
electrode_layouts, skip_duplicates=True
153-
)
151+
ProbeType.Electrode.insert(electrode_layouts, skip_duplicates=True)
154152

155153

156154
@schema
@@ -219,6 +217,7 @@ def build_electrode_layouts(
219217
"""Builds electrode layouts.
220218
221219
Args:
220+
probe_type (str): probe type (e.g., "neuropixels 1.0 - 3A")
222221
site_count_per_shank (int): site count per shank.
223222
col_spacing (float): (um) horizontal spacing between sites. Defaults to None (single column).
224223
row_spacing (float): (um) vertical spacing between columns. Defaults to None (single row).

0 commit comments

Comments
 (0)