We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8ef322 commit 2df0515Copy full SHA for 2df0515
bot.py
@@ -25,6 +25,7 @@
25
__version__ = '2.9.1'
26
27
import asyncio
28
+import uvloop
29
import textwrap
30
import datetime
31
import os
@@ -545,5 +546,6 @@ def uptime(self):
545
546
547
548
if __name__ == '__main__':
549
+ uvloop.install()
550
bot = ModmailBot()
551
bot.run()
requirements.txt
@@ -11,3 +11,4 @@ parsedatetime==2.4
11
motor==2.0.0
12
sanic==18.12.0
13
dnspython==1.16.0
14
+uvloop==0.12.0
0 commit comments