Skip to content

Commit 9646b57

Browse files
committed
* 默认不添加psutil库
1 parent cab3e2a commit 9646b57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jade/jade_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import signal
2121
import string
2222
import random
23-
import psutil
2423

2524
def zh_ch(string):
2625
"""
@@ -510,6 +509,7 @@ def clear_process_queue(process_id_queue):
510509

511510

512511
def clear_process(process_id):
512+
import psutil
513513
process = psutil.Process(process_id)
514514
for proc in process.children(recursive=True):
515515
proc.kill()

0 commit comments

Comments
 (0)