File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ def pytask_collect_node( # noqa: C901, PLR0912
437437 node .name = create_name_of_python_node (node_info )
438438 return node
439439
440- if isinstance (node , UPath ):
440+ if isinstance (node , UPath ): # pragma: no cover
441441 if not node .protocol :
442442 node = Path (node )
443443 else :
Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ def load(self, is_product: bool = False) -> Path:
382382 if is_product :
383383 return self .root_dir # type: ignore[return-value]
384384 msg = "'DirectoryNode' cannot be loaded as a dependency" # pragma: no cover
385- raise NotImplementedError (msg )
385+ raise NotImplementedError (msg ) # pragma: no cover
386386
387387 def collect (self ) -> list [Path ]:
388388 """Collect paths defined by the pattern."""
You can’t perform that action at this time.
0 commit comments