diff --git a/examples/sanic_motor.py b/examples/sanic_motor.py index 5b99a39a..495875a4 100644 --- a/examples/sanic_motor.py +++ b/examples/sanic_motor.py @@ -4,13 +4,10 @@ pymongo==3.4.0 motor==1.1 sanic==0.2.0 """ -import asyncio -import uvloop from sanic import Sanic from sanic.response import json -asyncio.set_event_loop_policy(uvloop.EventLoopPolicy()) app = Sanic('motor_mongodb')