Skip to content

Commit 81a419a

Browse files
committed
Adjust parameter order
1 parent fbf7588 commit 81a419a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/zipfile/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,7 @@ def close(self):
13691369

13701370
class _ZipRepacker:
13711371
"""Class for ZipFile repacking."""
1372-
def __init__(self, *, chunk_size=2**20, strict_descriptor=False, debug=0):
1372+
def __init__(self, *, strict_descriptor=False, chunk_size=2**20, debug=0):
13731373
self.debug = debug # Level of printing: 0 through 3
13741374
self.chunk_size = chunk_size
13751375
self.strict_descriptor = strict_descriptor

0 commit comments

Comments
 (0)