Skip to content

Commit 236a805

Browse files
jbojardroctothorpe
authored andcommitted
Fix for issue #11728
Added missing `path` property setter to `kfp.dsl.types.artifact_types.Model` class. Signed-off-by: Jaroslaw Bojar <[email protected]>
1 parent d23963c commit 236a805

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sdk/python/kfp/dsl/types/artifact_types.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ def path(self) -> str:
187187

188188
return self._get_path()
189189

190+
@path.setter
191+
def path(self, path: str) -> None:
192+
self._set_path(path)
193+
190194
@framework.setter
191195
def framework(self, framework: str) -> None:
192196
self._set_framework(framework)

0 commit comments

Comments
 (0)