Skip to content

Commit 45dae67

Browse files
committed
merge
2 parents 589aaaa + aae913c commit 45dae67

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/probeinterface/neuropixels_tools.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -755,10 +755,7 @@ def _get_active_contact_ids(imro_per_channel: dict) -> list[str]:
755755

756756
elec_ids = imro_per_channel["electrode"]
757757
shank_ids = imro_per_channel.get("shank", [None] * len(elec_ids))
758-
return [
759-
_build_canonical_contact_id(elec_id, shank_id)
760-
for shank_id, elec_id in zip(shank_ids, elec_ids)
761-
]
758+
return [_build_canonical_contact_id(elec_id, shank_id) for shank_id, elec_id in zip(shank_ids, elec_ids)]
762759

763760

764761
def _resolve_active_contacts_for_np1(imro_per_channel: dict) -> None:

0 commit comments

Comments
 (0)