We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3b6122 commit d76c716Copy full SHA for d76c716
src/_pytask/nodes.py
@@ -381,8 +381,8 @@ def signature(self) -> str:
381
def load(self, is_product: bool = False) -> Path:
382
if is_product:
383
return self.root_dir # type: ignore[return-value]
384
- msg = "'DirectoryNode' cannot be loaded as a dependency"
385
- raise NotImplementedError(msg) # pragma: no cover
+ msg = "'DirectoryNode' cannot be loaded as a dependency" # pragma: no cover
+ raise NotImplementedError(msg)
386
387
def collect(self) -> list[Path]:
388
"""Collect paths defined by the pattern."""
0 commit comments