From d13af4bdc41f85cce7e9ac6b40046ee562c2085a Mon Sep 17 00:00:00 2001 From: "@robintiwari" Date: Wed, 15 Feb 2017 22:11:16 -0600 Subject: [PATCH] updated examples --- examples/sanic_motor.py | 3 --- 1 file changed, 3 deletions(-) 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')