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 b3c4c04 commit 31ac565Copy full SHA for 31ac565
1 file changed
manage.py
@@ -1,12 +1,12 @@
1
#!/usr/bin/env python
2
-import sys
3
-import os
4
-import glob
5
-import subprocess
6
-import argparse
7
-import asyncio
+from gevent import monkey; monkey.patch_all()
8
from pathlib import Path
9
from config import Config
+import subprocess
+import argparse
+import glob
+import sys
+import os
10
11
# Ensure the root directory is in sys.path
12
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
0 commit comments