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 452ff31 commit f42f1fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions element_array_ephys/readers/spikeglx.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,12 +450,12 @@ def _transform_geom_to_shank(self):

from . import probe_geometry

probe_params = {
n: v
for n, v in zip(
probe_geometry.geom_param_names, probe_geometry.M[self.probe_PN]
probe_params = dict(
zip(
probe_geometry.geom_param_names,
probe_geometry.M[self.probe_PN]
)
}
)
probe_params["probe_type"] = self.probe_PN
elec_pos_df = probe_geometry.build_npx_probe(**probe_params)

Expand Down

0 comments on commit f42f1fc

Please sign in to comment.