Skip to content

Commit a3a817e

Browse files
pre-commit-ci[bot]ghisvail
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ba38db9 commit a3a817e

File tree

18 files changed

+24
-6
lines changed

18 files changed

+24
-6
lines changed

docs/sphinxext/github_link.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This script comes from scikit-learn:
33
https://github.com/scikit-learn/scikit-learn/blob/master/doc/sphinxext/github_link.py
44
"""
5+
56
import inspect
67
import os
78
import subprocess

pydra/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
first-class operations. It forms the core of the Nipype 2.0 ecosystem.
66
77
"""
8+
89
# This call enables pydra.tasks to be used as a namespace package when installed
910
# in editable mode. In normal installations it has no effect.
1011
__path__ = __import__("pkgutil").extend_path(__path__, __name__)

pydra/engine/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The core of the workflow engine."""
2+
23
from .submitter import Submitter
34
from .core import Workflow
45
from .task import AuditFlag, ShellCommandTask

pydra/engine/audit.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module to keep track of provenance information."""
2+
23
import os
34
import json
45
import attr

pydra/engine/core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Basic processing graph elements."""
2+
23
import abc
34
import json
45
import logging

pydra/engine/graph.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Data structure to support :class:`~pydra.engine.core.Workflow` tasks."""
2+
23
from copy import copy
34
from pathlib import Path
45
import subprocess as sp

pydra/engine/helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Administrative support for the engine framework."""
2+
23
import asyncio
34
import asyncio.subprocess as asp
45
from pathlib import Path

pydra/engine/specs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Task I/O specifications."""
2+
23
from pathlib import Path
34
import typing as ty
45
import inspect

pydra/engine/state.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Keeping track of mapping and reduce operations over tasks."""
2+
23
from copy import deepcopy
34
import itertools
45
from functools import reduce

pydra/engine/submitter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Handle execution backends."""
2+
23
import asyncio
34
import pickle
45
from uuid import uuid4

0 commit comments

Comments
 (0)