Skip to content

Commit b74cc14

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 405bbed commit b74cc14

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pydra/engine/helpers_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ def inputs_types_to_dict(name, inputs):
632632

633633

634634
def unwrap_splitter(
635-
splitter: ty.Union[str, ty.List[str], ty.Tuple[str, ...]]
635+
splitter: ty.Union[str, ty.List[str], ty.Tuple[str, ...]],
636636
) -> ty.Iterable[str]:
637637
"""Unwraps a splitter into a flat list of fields that are split over, i.e.
638638
[("a", "b"), "c"] -> ["a", "b", "c"]

pydra/mark/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Decorators to apply to functions used in Pydra workflows """
1+
"""Decorators to apply to functions used in Pydra workflows"""
22

33
from functools import wraps
44

pydra/tasks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Pydra tasks
1+
"""Pydra tasks
22
33
The ``pydra.tasks`` namespace is reserved for collections of Tasks, to be managed and
44
packaged separately.

0 commit comments

Comments
 (0)