From ad368be993e2e3007579f1d3880e36d60c71da92 Mon Sep 17 00:00:00 2001 From: Tak Tran Date: Sat, 23 Dec 2023 14:08:12 +0000 Subject: [PATCH] Remove spurious async in documentation example (#187) --- docs/intro.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro.rst b/docs/intro.rst index 62f2f16..a034c73 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -462,7 +462,7 @@ the sub-applications to build the larger combined application:: from customers import customers_app from orders import orders_app - async def create_app(): + def create_app(): app = Microdot() app.mount(customers_app, url_prefix='/customers') app.mount(orders_app, url_prefix='/orders')