Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit f890c12

Browse files
authored
add methods for manifest filrepaths abs2rel and rel2abs (#42)
1 parent d84a840 commit f890c12

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

datastep/step.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,12 @@ def _create_data_commit_message() -> str:
260260
f"{current_branch} at commit {repo.head.object.hexsha}"
261261
)
262262

263+
def manifest_filepaths_rel2abs(self):
264+
file_utils.manifest_filepaths_rel2abs(self)
265+
266+
def manifest_filepaths_abs2rel(self):
267+
file_utils.manifest_filepaths_abs2rel(self)
268+
263269
def checkout(
264270
self, data_version: Optional[str] = None, bucket: Optional[str] = None
265271
):

0 commit comments

Comments
 (0)