Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions fbpcp/gateway/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ def get_public_access_block(self, bucket: str) -> PublicAccessBlockConfig:

class ProgressPercentage(object):
def __init__(self, file_name: str, file_size: int) -> None:
# pyre-fixme[4]: Attribute must be annotated.
self._progressbar = tqdm(total=file_size, desc=file_name)

def __call__(self, bytes_amount: int) -> None:
Expand Down