Skip to content

Commit 02023b4

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

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

src/pytask_julia/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains the main namespace."""
2+
23
from __future__ import annotations
34

45
try:

src/pytask_julia/collect.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Collect tasks."""
2+
23
from __future__ import annotations
34

45
import subprocess

src/pytask_julia/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Configure pytask."""
2+
23
from __future__ import annotations
34

45
from typing import Any

src/pytask_julia/execute.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Execute tasks."""
2+
23
from __future__ import annotations
34

45
import shutil

src/pytask_julia/plugin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Register hook specifications and implementations."""
2+
23
from __future__ import annotations
34

45
from typing import TYPE_CHECKING

src/pytask_julia/serialization.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains the code to serialize keyword arguments to the task."""
2+
23
from __future__ import annotations
34

45
import json

src/pytask_julia/shared.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains shared functions."""
2+
23
from __future__ import annotations
34

45
from pathlib import Path

tests/test_normal_execution_w_plugin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Contains tests which do not require the plugin and ensure normal execution."""
2+
23
from __future__ import annotations
34

45
import textwrap

tests/test_parallel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Contains test which ensure that the plugin works with pytask-parallel."""
2+
23
from __future__ import annotations
34

45
import textwrap

0 commit comments

Comments
 (0)