Skip to content

Commit d76c716

Browse files
committed
no pragma.
!
1 parent c3b6122 commit d76c716

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/_pytask/nodes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,8 @@ def signature(self) -> str:
381381
def load(self, is_product: bool = False) -> Path:
382382
if is_product:
383383
return self.root_dir # type: ignore[return-value]
384-
msg = "'DirectoryNode' cannot be loaded as a dependency"
385-
raise NotImplementedError(msg) # pragma: no cover
384+
msg = "'DirectoryNode' cannot be loaded as a dependency" # pragma: no cover
385+
raise NotImplementedError(msg)
386386

387387
def collect(self) -> list[Path]:
388388
"""Collect paths defined by the pattern."""

0 commit comments

Comments
 (0)