XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Update base_provider.py

d2f04e80
Ryuk <88324835+anonymousx97@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified g4f/providers/base_provider.py +1 -1
@@ -34,7 +34,7 @@ def get_running_loop(check_nested: bool) -> Union[AbstractEventLoop, None]:
34 34 try:
35 35 import uvloop
36 36 if isinstance(loop, uvloop.Loop):
37 return
37 return loop
38 38 except (ImportError, ModuleNotFoundError):
39 39 pass
40 40 if check_nested and not hasattr(loop.__class__, "_nest_patched"):