Merge pull request #198 from sagnew/patch-2

Fix quotes in sample code for consistency
This commit is contained in:
Eli Uriegas
2016-12-14 11:39:22 -06:00
committed by GitHub

View File

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