Fix quotes in sample code for consistency

This commit is contained in:
Sam Agnew 2016-12-14 12:36:33 -05:00 committed by GitHub
parent 35e79f3985
commit a9b67c3028

View File

@ -41,7 +41,7 @@ app = Sanic()
async def test(request): async def test(request):
return json({"hello": "world"}) return json({"hello": "world"})
if __name__ == '__main__': if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000) app.run(host="0.0.0.0", port=8000)
``` ```