Skip to content

Commit 468fdc6

Browse files
committed
fix
1 parent 967f327 commit 468fdc6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_lock_command.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,9 @@ def test_lock_accept_fails_with_provisional_dependencies(runner, tmp_path):
517517
518518
from pytask import DirectoryNode
519519
520-
def task_example(paths=DirectoryNode(pattern="*.txt")) -> Annotated[str, Path("out.txt")]:
520+
def task_example(
521+
paths=DirectoryNode(pattern="*.txt")
522+
) -> Annotated[str, Path("out.txt")]:
521523
raise RuntimeError("should not execute")
522524
"""
523525
tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))

0 commit comments

Comments
 (0)