Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from PhilipeRLeal/master
Browse files Browse the repository at this point in the history
Update __init__.py
  • Loading branch information
WardPearce committed Jun 14, 2021
2 parents 0554992 + 793e2b5 commit f1d7010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backblaze/bucket/blocking/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def file_versions(self, settings: FileSettings = None

for file in data["files"]:
yield FileModel(file), self.file(file["fileId"]), \
file["nextFileName"], file["nextFileId"]
file["fileName"]

@authorize_required
def file_names(self, settings: FileSettings = None
Expand Down Expand Up @@ -144,7 +144,7 @@ def file_names(self, settings: FileSettings = None

for file in data["files"]:
yield FileModel(file), self.file(file["fileId"]), \
file["nextFileName"]
file["fileName"]

def upload_file(self, settings: UploadSettings, pathway: str,
allow_parts: bool = True
Expand Down

0 comments on commit f1d7010

Please sign in to comment.