Skip to content

Commit

Permalink
Fix run settings serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
polyaxon-ci committed Nov 1, 2023
1 parent cc38127 commit 1c46352
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions haupt/haupt/apis/serializers/base/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,12 @@ def get_settings(self, obj):
artifacts_store = None
if hasattr(obj, "artifacts_store") and obj.artifacts_store:
artifacts_store = {"name": obj.artifacts_store.name}
tensorboard = None
if tensorboard:
tensorboard = {
"name": tensorboard.name,
"status": tensorboard.status,
"uuid": tensorboard.uuid.hex,
}
build = None
if build:
build = {
"name": build.name,
Expand Down

0 comments on commit 1c46352

Please sign in to comment.