removed outdated import from documentation (Fixes #216)

This commit is contained in:
Carlo Colombo
2024-03-09 22:48:39 +01:00
committed by Miguel Grinberg
parent f6876c0d15
commit 6b1fd61917
2 changed files with 3 additions and 3 deletions

View File

@@ -1191,7 +1191,7 @@ class Microdot:
Example::
import asyncio
from microdot_asyncio import Microdot
from microdot import Microdot
app = Microdot()
@@ -1268,7 +1268,7 @@ class Microdot:
Example::
from microdot_asyncio import Microdot
from microdot import Microdot
app = Microdot()

View File

@@ -77,7 +77,7 @@ class TestClient:
The following example shows how to create a test client for an application
and send a test request::
from microdot_asyncio import Microdot
from microdot import Microdot
app = Microdot()