Skip to content

Commit 6b1fd61

Browse files
carlo-colombomiguelgrinberg
authored andcommitted
removed outdated import from documentation (Fixes miguelgrinberg#216)
1 parent f6876c0 commit 6b1fd61

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/microdot/microdot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ async def start_server(self, host='0.0.0.0', port=5000, debug=False,
11911191
Example::
11921192
11931193
import asyncio
1194-
from microdot_asyncio import Microdot
1194+
from microdot import Microdot
11951195
11961196
app = Microdot()
11971197
@@ -1268,7 +1268,7 @@ def run(self, host='0.0.0.0', port=5000, debug=False, ssl=None):
12681268
12691269
Example::
12701270
1271-
from microdot_asyncio import Microdot
1271+
from microdot import Microdot
12721272
12731273
app = Microdot()
12741274

src/microdot/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class TestClient:
7777
The following example shows how to create a test client for an application
7878
and send a test request::
7979
80-
from microdot_asyncio import Microdot
80+
from microdot import Microdot
8181
8282
app = Microdot()
8383

0 commit comments

Comments
 (0)