fix(object): step into 'data' in get response

This commit is contained in:
izzy lyseggen
2021-01-26 09:53:56 +00:00
parent efa8c46b61
commit 6b4dc9a6b2
+1 -1
View File
@@ -49,7 +49,7 @@ class Resource(ResourceBase):
params = {"stream_id": stream_id, "object_id": object_id}
return self.make_request(
query=query, params=params, return_type=["stream", "object"]
query=query, params=params, return_type=["stream", "object", "data"]
)
def create(self, stream_id: str, objects: List[Dict]) -> str: