Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a57d364

Browse files
committedMar 18, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7d8ca25 commit a57d364

9 files changed

+13
-6
lines changed
 

‎src/pytask_parallel/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Contains the main namespace of the package."""
2+
23
from __future__ import annotations
34

45
try:

‎src/pytask_parallel/backends.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Configures the available backends."""
2+
23
from __future__ import annotations
34

45
import enum

‎src/pytask_parallel/build.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Extend the build command."""
2+
23
from __future__ import annotations
34

45
import click

‎src/pytask_parallel/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Configure pytask."""
2+
23
from __future__ import annotations
34

45
import enum

‎src/pytask_parallel/execute.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Contains code relevant to the execution."""
2+
23
from __future__ import annotations
34

45
import inspect

‎src/pytask_parallel/logging.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Contains code relevant to logging."""
2+
23
from __future__ import annotations
34

45
from pytask import console

‎src/pytask_parallel/plugin.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Entry-point for the plugin."""
2+
23
from __future__ import annotations
34

45
from pluggy import PluginManager

‎tests/test_jupyter/test_functional_interface.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"cell_type": "code",
55
"execution_count": null,
6-
"id": "12bc75b1",
6+
"id": "0",
77
"metadata": {},
88
"outputs": [],
99
"source": [
@@ -18,7 +18,7 @@
1818
{
1919
"cell_type": "code",
2020
"execution_count": null,
21-
"id": "29ac7311",
21+
"id": "1",
2222
"metadata": {},
2323
"outputs": [],
2424
"source": [
@@ -39,7 +39,7 @@
3939
{
4040
"cell_type": "code",
4141
"execution_count": null,
42-
"id": "738c9418",
42+
"id": "2",
4343
"metadata": {},
4444
"outputs": [],
4545
"source": [

‎tests/test_jupyter/test_functional_interface_w_relative_path.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"cell_type": "code",
55
"execution_count": null,
6-
"id": "12bc75b1",
6+
"id": "0",
77
"metadata": {},
88
"outputs": [],
99
"source": [
@@ -18,7 +18,7 @@
1818
{
1919
"cell_type": "code",
2020
"execution_count": null,
21-
"id": "29ac7311",
21+
"id": "1",
2222
"metadata": {},
2323
"outputs": [],
2424
"source": [
@@ -39,7 +39,7 @@
3939
{
4040
"cell_type": "code",
4141
"execution_count": null,
42-
"id": "738c9418",
42+
"id": "2",
4343
"metadata": {},
4444
"outputs": [],
4545
"source": [

0 commit comments

Comments
 (0)
Please sign in to comment.