Skip to content

Commit 31ac565

Browse files
committed
Refactor manage.py to integrate gevent for improved concurrency handling. Rearrange import statements for better organization.
1 parent b3c4c04 commit 31ac565

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

manage.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env python
2-
import sys
3-
import os
4-
import glob
5-
import subprocess
6-
import argparse
7-
import asyncio
2+
from gevent import monkey; monkey.patch_all()
83
from pathlib import Path
94
from config import Config
5+
import subprocess
6+
import argparse
7+
import glob
8+
import sys
9+
import os
1010

1111
# Ensure the root directory is in sys.path
1212
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))

0 commit comments

Comments
 (0)