ProbeType.create_neuropixels_probe
warning message improvements
#206
Labels
bug
Something isn't working
ProbeType.create_neuropixels_probe
warning message improvements
#206
Bug Report
Description
In our code, we had been defining our probes using the
ProbeType
class as suchWe recently updated to the latest version of
element-array-ephys
which broke our pipeline since the class version is now passed directly toprobe_element.create_neuropixels_probe()
which removes theskip_duplicates=True
that the older version of the pipeline had, resulting inIf follow the deprecation advice and update to:
we get the same error as above since
skip_dulicates=True
is still not passed.Possible solutions
There are two solutions:
skip_duplicates=True
toprobe_element.create_neuropixels_probe
similar to the older behavior.create_neuropixels_probe
with a singlecreate_neuropixels_probe_types()
.The text was updated successfully, but these errors were encountered: