Skip to content

Commit e65e581

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

10 files changed

+11
-4
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ Use the `serializer` keyword arguments of the `@pytask.mark.r` decorator with
190190

191191
```python
192192
@pytask.mark.r(script="script.r", serializer="yaml")
193-
def task_example():
194-
...
193+
def task_example(): ...
195194
```
196195

197196
And in your R script use
@@ -214,8 +213,7 @@ import json
214213

215214

216215
@pytask.mark.r(script="script.r", serializer=json.dumps, suffix=".json")
217-
def task_example():
218-
...
216+
def task_example(): ...
219217
```
220218

221219
### Configuration

src/pytask_r/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains the main namespace of pytask-r."""
2+
23
from __future__ import annotations
34

45
try:

src/pytask_r/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 subprocess

src/pytask_r/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
from typing import Any

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

src/pytask_r/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 pluggy import PluginManager

src/pytask_r/serialization.py

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

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

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