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

Commit

Permalink
Added erasure argument
Browse files Browse the repository at this point in the history
  • Loading branch information
lakewik authored Apr 25, 2017
1 parent 28d2454 commit 36d94b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion storj/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,13 @@ class File(Object):
"""

def __init__(self, bucket=None, hash=None, mimetype=None,
filename=None, size=None, id=None, frame=None, created=None, hmac=None):
filename=None, size=None, id=None, frame=None, created=None, hmac=None, erasure=None):
self.bucket = Bucket(id=bucket)
self.hash = hash
self.mimetype = mimetype
self.filename = filename
self.size = size
self.reasure = erasure
self.shard_manager = None
self.id = id
self.frame = Frame(id=frame)
Expand Down

0 comments on commit 36d94b4

Please sign in to comment.