返回提交历史
Modified
g4f/Provider/search/GoogleSearch.py
+1
-1
XFEstudio/gpt4free
fix: await stop_browser call in GoogleSearch to ensure proper asynchronous execution
0563c0c1
代码差异
1 个文件
+1
-1
@@ -50,4 +50,4 @@ class GoogleSearch(AsyncGeneratorProvider, AuthFileMixin):
50
50
await asyncio.sleep(1000)
51
51
finally:
52
52
if stop_browser is not None:
53
stop_browser()
53
await stop_browser()