Skip to content

Commit 5292553

Browse files
committed
linting/bug fixes
1 parent 4b27802 commit 5292553

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

aws_lambda/aws_lambda.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ def cleanup_old_versions(src, keep_last_versions, config_file='config.yaml'):
7979

8080

8181
def deploy(
82-
src, config_file='config.yaml', requirements=False,
83-
local_package=None,
82+
src, requirements=False, local_package=None,
83+
config_file='config.yaml',
8484
):
8585
"""Deploys a new function to AWS Lambda.
8686
@@ -112,8 +112,7 @@ def deploy(
112112

113113

114114
def deploy_s3(
115-
src, config_file='config.yaml', requirements=False,
116-
local_package=None,
115+
src, requirements=False, local_package=None, config_file='config.yaml',
117116
):
118117
"""Deploys a new function via AWS S3.
119118
@@ -146,8 +145,8 @@ def deploy_s3(
146145

147146

148147
def upload(
149-
src, config_file='config.yaml', requirements=False,
150-
local_package=None,
148+
src, requirements=False, local_package=None,
149+
config_file='config.yaml',
151150
):
152151
"""Uploads a new function to AWS S3.
153152
@@ -249,8 +248,7 @@ def init(src, minimal=False):
249248

250249

251250
def build(
252-
src, config_file='config.yaml', requirements=False,
253-
local_package=None,
251+
src, requirements=False, local_package=None, config_file='config.yaml',
254252
):
255253
"""Builds the file bundle.
256254

0 commit comments

Comments
 (0)