We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d0f44f commit 90bcd72Copy full SHA for 90bcd72
1 file changed
README.md
@@ -108,7 +108,7 @@ def handle(req):
108
"""
109
110
# req is bytes, so an input of "hello" returns i.e. b'hello'
111
- return string(req)
+ return str(req)
112
```
113
114
# Using the python3-http templates
@@ -241,4 +241,4 @@ def handle(event, context):
241
"content-type-received": event.headers['Content-Type']
242
}
243
244
-```
+```
0 commit comments