Remove spurious async in documentation example (#187)

This commit is contained in:
Tak Tran
2023-12-23 14:08:12 +00:00
committed by GitHub
parent 3df56c6ffe
commit ad368be993

View File

@@ -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')