Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 24.4.2
rev: 25.1.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
additional_dependencies:
- tomli
- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.2.0
hooks:
- id: flake8
2 changes: 1 addition & 1 deletion pydra/engine/helpers_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ def inputs_types_to_dict(name, inputs):


def unwrap_splitter(
splitter: ty.Union[str, ty.List[str], ty.Tuple[str, ...]]
splitter: ty.Union[str, ty.List[str], ty.Tuple[str, ...]],
) -> ty.Iterable[str]:
"""Unwraps a splitter into a flat list of fields that are split over, i.e.
[("a", "b"), "c"] -> ["a", "b", "c"]
Expand Down
2 changes: 1 addition & 1 deletion pydra/mark/functions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Decorators to apply to functions used in Pydra workflows """
"""Decorators to apply to functions used in Pydra workflows"""

from functools import wraps

Expand Down
2 changes: 1 addition & 1 deletion pydra/tasks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Pydra tasks
"""Pydra tasks

The ``pydra.tasks`` namespace is reserved for collections of Tasks, to be managed and
packaged separately.
Expand Down
Loading