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:
- id: python-use-type-annotations
- id: text-unicode-replacement-char
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.17
rev: v0.16.3
hooks:
- id: ruff-check
- id: ruff-format
Expand Down
2 changes: 1 addition & 1 deletion src/pytask_julia/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def pytask_parse_config(config: dict[str, Any]) -> None:
config["julia_project"] = parse_relative_path(project, config["root"])


def _parse_value_or_whitespace_option(value: Any) -> None | list[str]:
def _parse_value_or_whitespace_option(value: Any) -> list[str] | None:
"""Parse option which can hold a single value or values separated by new lines."""
if value is None:
return None
Expand Down