Skip to content

Commit

Permalink
address PR comments
Browse files Browse the repository at this point in the history
Co-authored-by: Dimitri Yatsenko <[email protected]>
  • Loading branch information
Thinh Nguyen and dimitri-yatsenko authored Sep 15, 2023
1 parent 4407678 commit 452ff31
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions element_array_ephys/probe.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,10 @@ def create_neuropixels_probe(probe_type: str = "neuropixels 1.0 - 3A"):
npx_probes_config["neuropixels 2.0 - MS"] = npx_probes_config["NP2010"]

probe_type = {"probe_type": probe_type}
probe_params = {
n: v
for n, v in zip(
probe_params = dict(zip(
probe_geometry.geom_param_names,
npx_probes_config[probe_type["probe_type"]],
)
}
npx_probes_config[probe_type["probe_type"]]
))
electrode_layouts = probe_geometry.build_npx_probe(
**{**probe_params, **probe_type}
)
Expand Down

0 comments on commit 452ff31

Please sign in to comment.