Skip to content
Merged
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
4 changes: 2 additions & 2 deletions aws_lambda/aws_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def deploy(


def deploy_s3(
src, requirements=False, local_package=None, config_file='config.yaml',
src, use_requirements=False, local_package=None, config_file='config.yaml',
):
"""Deploys a new function via AWS S3.

Expand All @@ -132,7 +132,7 @@ def deploy_s3(
# Zip the contents of this folder into a single file and output to the dist
# directory.
path_to_zip_file = build(
src, config_file=config_file, use_requirements=requirements,
src, config_file=config_file, use_requirements=use_requirements,
local_package=local_package,
)

Expand Down