Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 22, 2024
1 parent 57c56e1 commit 9e9b7fd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pytask_stata/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Everything related to the CLI."""

from __future__ import annotations

import click
Expand Down
1 change: 1 addition & 0 deletions src/pytask_stata/collect.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Collect tasks."""

from __future__ import annotations

import functools
Expand Down
1 change: 1 addition & 0 deletions src/pytask_stata/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Configure pytask."""

from __future__ import annotations

import shutil
Expand Down
1 change: 1 addition & 0 deletions src/pytask_stata/execute.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Execute tasks."""

from __future__ import annotations

import re
Expand Down
1 change: 1 addition & 0 deletions src/pytask_stata/parametrize.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Parametrize tasks."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions src/pytask_stata/plugin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Register hook specifications and implementations."""

from __future__ import annotations

from typing import TYPE_CHECKING
Expand Down
1 change: 1 addition & 0 deletions src/pytask_stata/shared.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Shared functions and variables."""

from __future__ import annotations

import sys
Expand Down
1 change: 1 addition & 0 deletions tests/test_normal_execution_w_plugin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Contains tests which do not require the plugin and ensure normal execution."""

from __future__ import annotations

import textwrap
Expand Down
1 change: 1 addition & 0 deletions tests/test_parallel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Contains test which ensure that the plugin works with pytask-parallel."""

from __future__ import annotations

import textwrap
Expand Down

0 comments on commit 9e9b7fd

Please sign in to comment.