Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ repos:
additional_dependencies: [black==23.7.0]

- repo: https://github.com/codespell-project/codespell
rev: "v2.2.6"
rev: "v2.4.1"
hooks:
- id: codespell
args: ["-L", "sur,nd"]
Expand Down
2 changes: 1 addition & 1 deletion ipykernel/trio_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def initialize(self, kernel, io_loop):
bg_thread.start()

def interrupt(self, signum, frame):
"""Interuppt the runner."""
"""Interrupt the runner."""
if self._cell_cancel_scope:
self._cell_cancel_scope.cancel()
else:
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def stop_global_kernel():
def new_kernel(argv=None):
"""Context manager for a new kernel in a subprocess

Should only be used for tests where the kernel must not be re-used.
Should only be used for tests where the kernel must not be reused.

Returns
-------
Expand Down
Loading