From a9b67c3028d85fd3f95e9df11129d0cf623eb2f4 Mon Sep 17 00:00:00 2001 From: Sam Agnew Date: Wed, 14 Dec 2016 12:36:33 -0500 Subject: [PATCH] Fix quotes in sample code for consistency --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 669ed8d9..5aded700 100644 --- a/README.md +++ b/README.md @@ -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) ```