Skip to content

Commit 14bf9ab

Browse files
committed
Fix flake8.
1 parent bb2cf42 commit 14bf9ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytask_stata/collect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def run_stata_script(
2525
) -> None:
2626
"""Run an R script."""
2727
cmd = [executable, "-e", "do", script.as_posix(), *options, *log_name]
28-
print("Executing " + " ".join(cmd) + ".") # noqa: T001
28+
print("Executing " + " ".join(cmd) + ".") # noqa: T201
2929
subprocess.run(cmd, cwd=cwd, check=True)
3030

3131

0 commit comments

Comments
 (0)