We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent babae17 commit 7c1c34eCopy full SHA for 7c1c34e
renku/cli/_graph.py
@@ -61,6 +61,9 @@
61
62
def _safe_path(filepath, can_be_cwl=False):
63
"""Check if the path should be used in output."""
64
+ if isinstance(filepath, Path):
65
+ filepath = str(filepath)
66
+
67
# Should not be in ignore paths.
68
if filepath in {'.gitignore', '.gitattributes'}:
69
return False
renku/models/datasets.py
@@ -464,4 +464,4 @@ def __attrs_post_init__(self):
464
self._label = self.identifier
465
466
if not self.path:
467
- self.path = self.client.renku_datasets_path / str(self.uid)
+ self.path = str(self.client.renku_datasets_path / str(self.uid))
0 commit comments