mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-23 19:11:48 +03:00
remove unnecessary semicolon
This commit is contained in:
parent
ab80fdeee2
commit
b5368c276d
@ -112,7 +112,7 @@ async def search(query: str, n_results: int = 5, max_words: int = 2500, add_text
|
|||||||
texts = await asyncio.gather(*requests)
|
texts = await asyncio.gather(*requests)
|
||||||
|
|
||||||
formatted_results = []
|
formatted_results = []
|
||||||
left_words = max_words;
|
left_words = max_words
|
||||||
for i, entry in enumerate(results):
|
for i, entry in enumerate(results):
|
||||||
if add_text:
|
if add_text:
|
||||||
entry.text = texts[i]
|
entry.text = texts[i]
|
||||||
|
Loading…
Reference in New Issue
Block a user