mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 17:35:07 +01:00
Fix type of previous_iterations
This commit is contained in:
parent
46ef205a75
commit
4978360852
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ async def execute_information_collection(
|
|||
):
|
||||
iteration = 0
|
||||
MAX_ITERATIONS = 2
|
||||
previous_iterations = List[InformationCollectionIteration]
|
||||
previous_iterations: List[InformationCollectionIteration] = []
|
||||
while iteration < MAX_ITERATIONS:
|
||||
online_results: Dict = dict()
|
||||
|
||||
|
|
Loading…
Reference in a new issue