Skip to content

Commit 8496b38

Browse files
authored
Merge pull request #794 from simvue-io/793-add-missing-user-property-to-apiobjectsrunrun
🐛 Add missing user property to API Run object
2 parents 9a03247 + 34f6d2c commit 8496b38

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

simvue/api/objects/run.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,11 @@ def metadata(self) -> dict[str, typing.Any]:
229229
def metadata(self, metadata: dict[str, typing.Any]) -> None:
230230
self._staging["metadata"] = metadata
231231

232+
@property
233+
def user(self) -> str:
234+
"""Return the user associate with this run."""
235+
return self._get_attribute("user")
236+
232237
@property
233238
@staging_check
234239
def description(self) -> str:

0 commit comments

Comments
 (0)