Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.

Commit 4dc8160

Browse files
authored
Hotfix missing parametr storageSize
1 parent d4d4fd7 commit 4dc8160

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

storj/model.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,12 @@ class Frame(Object):
181181
shards (list[:py:class:`Shard`]): shards that compose this frame.
182182
"""
183183

184-
def __init__(self, id=None, created=None, shards=None, locked=None, user=None, size=None):
184+
def __init__(self, id=None, created=None, shards=None, locked=None, user=None, size=None, storageSize=None):
185185
self.id = id
186186
self.locked = locked
187187
self.user = user
188188
self.size = size
189+
self.storageSize = storageSize
189190

190191
if created is not None:
191192
self.created = datetime.fromtimestamp(

0 commit comments

Comments
 (0)