File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 18
18
19
19
async def main_entry (loop : asyncio .AbstractEventLoop ):
20
20
parser = argparse .ArgumentParser (description = 'LangBot' )
21
- parser .add_argument ('--skip-plugin-deps-check' , action = 'store_true' , help = '跳过插件依赖项检查' , default = False )
22
21
parser .add_argument ('--standalone-runtime' , action = 'store_true' , help = '使用独立插件运行时' , default = False )
23
22
args = parser .parse_args ()
24
23
@@ -49,10 +48,6 @@ async def main_entry(loop: asyncio.AbstractEventLoop):
49
48
print ('The missing dependencies have been installed automatically, please restart the program.' )
50
49
sys .exit (0 )
51
50
52
- # check plugin deps
53
- if not args .skip_plugin_deps_check :
54
- await deps .precheck_plugin_deps ()
55
-
56
51
# # 检查pydantic版本,如果没有 pydantic.v1,则把 pydantic 映射为 v1
57
52
# import pydantic.version
58
53
You can’t perform that action at this time.
0 commit comments