We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33d3fec commit f61eaeeCopy full SHA for f61eaee
1 file changed
src/spikeinterface/widgets/rasters.py
@@ -443,7 +443,7 @@ def __init__(
443
else:
444
depths = sorting_analyzer_or_sorting.get_extension("unit_locations").get_data(outputs="numpy")
445
s_args_depths = np.argsort(depths[:, 1])
446
- depth_dict = {b:i for i,b in enumerate(unit_ids[s_args_depths].tolist())}
+ depth_dict = {b: i for i, b in enumerate(unit_ids[s_args_depths].tolist())}
447
elif sort_by_depth:
448
raise AttributeError("`sort_by_depth=True` requires a SortingAnalyzer")
449
0 commit comments