Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ repos:
rev: v1.20.1
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/myint/docformatter
rev: v1.3.1
hooks:
- id: docformatter
args: [--in-place, --wrap-summaries, "88", --wrap-descriptions, "88", --blank]
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion src/pytask_r/collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def run_r_script(script: Path, options: list[str], serialized: Path) -> None:
"""Run an R script."""
cmd = ["Rscript", script.as_posix(), *options, str(serialized)]
print("Executing " + " ".join(cmd) + ".") # noqa: T001
print("Executing " + " ".join(cmd) + ".") # noqa: T201
subprocess.run(cmd, check=True)


Expand Down