Skip to content

Commit 042fa04

Browse files
authored
Manually update Codespell and fix new errors. (#1328)
1 parent 9576a03 commit 042fa04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ repos:
6161
additional_dependencies: [black==23.7.0]
6262

6363
- repo: https://github.com/codespell-project/codespell
64-
rev: "v2.2.6"
64+
rev: "v2.4.1"
6565
hooks:
6666
- id: codespell
6767
args: ["-L", "sur,nd"]

ipykernel/trio_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def initialize(self, kernel, io_loop):
2929
bg_thread.start()
3030

3131
def interrupt(self, signum, frame):
32-
"""Interuppt the runner."""
32+
"""Interrupt the runner."""
3333
if self._cell_cancel_scope:
3434
self._cell_cancel_scope.cancel()
3535
else:

tests/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def stop_global_kernel():
166166
def new_kernel(argv=None):
167167
"""Context manager for a new kernel in a subprocess
168168
169-
Should only be used for tests where the kernel must not be re-used.
169+
Should only be used for tests where the kernel must not be reused.
170170
171171
Returns
172172
-------

0 commit comments

Comments
 (0)