Skip to content

Commit

Permalink
cvlib: Add buildID to studio obj
Browse files Browse the repository at this point in the history
Change-Id: I53961b33eb350ef830042527f76f442ad72b1075
  • Loading branch information
cianmcgrath committed Sep 12, 2022
1 parent 3485edc commit a67d3f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cloudvision/cvlib/studio.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,18 @@ class Studio:
- inputs: inputs provided to the studio
- deviceIds: Ids of the devices associated with this studio
- logger: The logger to be used with this studio
- execId: Id of the execution
- buildId: Id of the studio build
'''

def __init__(self, workspaceId: str, studioId: str, inputs, deviceIds, logger, execId):
def __init__(self, workspaceId: str, studioId: str, inputs, deviceIds, logger, execId, buildId):
self.workspaceId = workspaceId
self.studioId = studioId
self.inputs = inputs
self.deviceIds = deviceIds
self.logger = logger
self.execId = execId
self.buildId = buildId


class InputError:
Expand Down

0 comments on commit a67d3f4

Please sign in to comment.