Skip to content

Commit

Permalink
Manually update Codespell and fix new errors. (#1328)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau authored Feb 13, 2025
1 parent 9576a03 commit 042fa04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 042fa04

Please sign in to comment.