Skip to content

Commit 3e401f1

Browse files
committed
Remove merge conflict-resolution change
1 parent a3f353a commit 3e401f1

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

element_array_ephys/ephys_acute.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,7 @@ def auto_generate_entries(cls, session_key):
180180
"probe_type": spikeglx_meta.probe_model,
181181
"probe": spikeglx_meta.probe_SN,
182182
}
183-
if (
184-
probe_key["probe"] not in [p["probe"] for p in probe_list]
185-
and probe_key not in probe.Probe()
186-
):
183+
if probe_key["probe"] not in [p["probe"] for p in probe_list]:
187184
probe_list.append(probe_key)
188185

189186
probe_dir = meta_filepath.parent
@@ -207,10 +204,7 @@ def auto_generate_entries(cls, session_key):
207204
"probe_type": oe_probe.probe_model,
208205
"probe": oe_probe.probe_SN,
209206
}
210-
if (
211-
probe_key["probe"] not in [p["probe"] for p in probe_list]
212-
and probe_key not in probe.Probe()
213-
):
207+
if probe_key["probe"] not in [p["probe"] for p in probe_list]:
214208
probe_list.append(probe_key)
215209
probe_insertion_list.append(
216210
{

0 commit comments

Comments
 (0)