Update README.md

via flake8
This commit is contained in:
Ryan Kung 2016-11-01 14:35:06 +08:00 committed by GitHub
parent 47b417db28
commit 96fcd8443f

View File

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