Skip to content

Commit 9821a69

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 408f30a commit 9821a69

9 files changed

+9
-0
lines changed

src/pytask_stata/cli.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Everything related to the CLI."""
2+
23
from __future__ import annotations
34

45
import click

src/pytask_stata/collect.py

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

45
import functools

src/pytask_stata/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 shutil

src/pytask_stata/execute.py

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

45
import re

src/pytask_stata/parametrize.py

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

45
from typing import Any

src/pytask_stata/plugin.py

+1
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_stata/shared.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Shared functions and variables."""
2+
23
from __future__ import annotations
34

45
import sys

tests/test_normal_execution_w_plugin.py

+1
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

+1
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)