Skip to content

Commit 585baaf

Browse files
committed
[DATALAD RUNCMD] chore: run codespell throughout fixing a few typos interactively
=== Do not change lines below === { "chain": [], "cmd": "codespell -w -i 3 -C 4", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
1 parent adb8fce commit 585baaf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

spikeinterface_gui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Some design notes:
33
* controller is a layer between spikeinterface objects and every view
4-
* every view can notify some signals to other view that are centralized bu the controller
4+
* every view can notify some signals to other view that are centralized by the controller
55
* views have settings
66
* views have 2 implementations : qt (legacy) and panel (for the web)
77
They need to implement the make_layout and the refresh for each backends (qt, panel).

spikeinterface_gui/ndscatterview.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self, controller=None, parent=None, backend="qt"):
3838
self.selected_comp = np.ones((ndim), dtype='bool')
3939
self.projection = self.get_one_random_projection()
4040

41-
#estimate limts
41+
#estimate limits
4242
data = self.data
4343
if data.shape[0] > 1000:
4444
inds = np.random.choice(data.shape[0], 1000, replace=False)
@@ -297,7 +297,7 @@ def _qt_refresh(self, update_components=True, update_colors=True):
297297
self.scatter_select.setData(selected_scatter_x, selected_scatter_y)
298298

299299

300-
# TODO sam : kepp the old implementation in mind
300+
# TODO sam : keep the old implementation in mind
301301
# for unit_index, unit_id in enumerate(self.controller.unit_ids):
302302
# if not self.controller.get_unit_visibility(unit_id):
303303
# continue

0 commit comments

Comments
 (0)