We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70931cd commit c47aaf2Copy full SHA for c47aaf2
aws_lambda/helpers.py
@@ -18,7 +18,7 @@ def read(path, loader=None):
18
19
def archive(src, dest, filename):
20
output = os.path.join(dest, filename)
21
- zfh = zipfile.ZipFile(output, 'w')
+ zfh = zipfile.ZipFile(output, 'w', zipfile.ZIP_DEFLATED)
22
23
for root, _, files in os.walk(src):
24
for file in files:
0 commit comments