From 520b41d0cd4c11ec57c688679ad91182b287fc6b Mon Sep 17 00:00:00 2001 From: Jaap Date: Wed, 23 Feb 2022 12:07:04 +0100 Subject: [PATCH] Remove redundant app instantiation in README --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 106e9d6..42cc806 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,6 @@ from starlette.responses import JSONResponse from starlette.routing import Route import uvicorn -app = Starlette(debug=True) - async def homepage(request): return JSONResponse({"auth": request.scope["auth"]})