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
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ repos:
hooks:
- id: mypy
exclude: 'docs/.'
- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
hooks:
- id: codespell
2 changes: 1 addition & 1 deletion rtree/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ def intersection_v(self, mins, maxs):
ctypes.byref(nr),
)

# If we got the expected nuber of results then return
# If we got the expected number of results then return
if nr.value == n - offn:
return ids[: counts.sum()], counts
# Otherwise, if our array is too small then resize
Expand Down
Loading