Skip to content

Commit f7e2111

Browse files
authored
Merge pull request #254 from AlexHedley/patch-1
Update python formatting
2 parents 3de4c51 + 3778e90 commit f7e2111

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc_source/with-sqs-create-package.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,12 @@ Follow the instructions to create a AWS Lambda function deployment package\.
144144
```
145145
from __future__ import print_function
146146
147+
147148
def lambda_handler(event, context):
148149
for record in event['Records']:
149-
print ("test")
150-
payload=record["body"]
151-
print(str(payload))
150+
print("test")
151+
payload = record["body"]
152+
print(str(payload))
152153
```
153154

154-
Zip up the sample code to create a deployment package\. For instructions, see [Deploy Python Lambda functions with \.zip file archives](python-package.md)\.
155+
Zip up the sample code to create a deployment package\. For instructions, see [Deploy Python Lambda functions with \.zip file archives](python-package.md)\.

0 commit comments

Comments
 (0)