remove unnecessary semicolon

This commit is contained in:
Yash Varshney 2024-01-01 01:42:10 +05:30 committed by GitHub
parent ab80fdeee2
commit b5368c276d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ async def search(query: str, n_results: int = 5, max_words: int = 2500, add_text
texts = await asyncio.gather(*requests)
formatted_results = []
left_words = max_words;
left_words = max_words
for i, entry in enumerate(results):
if add_text:
entry.text = texts[i]