Skip to content
Open
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 @@ -26,7 +26,7 @@ repos:
- pytest

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.14.14'
rev: 'v0.15.1'
hooks:
- id: ruff
args: [--fix]
Expand Down
2 changes: 1 addition & 1 deletion tests/routers/openml/datasets_list_datasets_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def test_list_data_identical(

# Pagination parameters are nested in the new query style
# The old style has no `limit` by default, so we mimic this with a high default
new_style = kwargs | {"pagination": {"limit": limit if limit else 1_000_000}}
new_style = kwargs | {"pagination": {"limit": limit or 1_000_000}}
if offset is not None:
new_style["pagination"]["offset"] = offset

Expand Down