Skip to content

Commit

Permalink
Remove old return type
Browse files Browse the repository at this point in the history
  • Loading branch information
bhperry committed Feb 27, 2024
1 parent 51fee05 commit ab13a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saturnfs/client/file_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def _producer_init(self, chunks: Iterable[UploadChunk]) -> int:
Thread(target=self._producer, kwargs={"chunks": chunks}, daemon=True).start()
return first_chunk.part.part_number

def _producer(self, chunks: Iterable[UploadChunk]) -> int:
def _producer(self, chunks: Iterable[UploadChunk]):
# Iterate chunks onto the upload_queue until completed or error detected
all_chunks_read: bool = False
for chunk in chunks:
Expand Down

0 comments on commit ab13a51

Please sign in to comment.