Skip to content

Commit

Permalink
Fix issue 534
Browse files Browse the repository at this point in the history
  • Loading branch information
baterflyrity authored Sep 30, 2023
1 parent e10f52d commit 1612cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py7zr/py7zr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ def __init__(self, files, src_start: int, header, mp=False) -> None:
self.src_start = src_start
self.header = header
self.current_file_index = len(self.files)
self.last_file_index = len(self.files)
self.last_file_index = len(self.files) - 1
if mp:
self.concurrent: Union[Type[Thread], Type[Process]] = Process
else:
Expand Down

0 comments on commit 1612cb4

Please sign in to comment.