issues
search
amazon-archives
/
data-pipeline-samples
This repository hosts sample pipelines
MIT No Attribution
464
stars
269
forks
source link
Fix Lambda function coding style
#73
Open
lambda-python-modules
opened
7 years ago
lambda-python-modules
commented
7 years ago
Modules
json
and
urllib
aren't in use and import is increasing cold-start time.
Don't need try-except if nothing to do with exception. Let it fails natural way. It also makes importing
print_function
unnecessary and improve cold-start time as well.
json
andurllib
aren't in use and import is increasing cold-start time.print_function
unnecessary and improve cold-start time as well.