Fix type of previous_iterations

This commit is contained in:
sabaimran
2024-10-09 16:02:41 -07:00
parent 46ef205a75
commit 4978360852

View File

@@ -128,7 +128,7 @@ async def execute_information_collection(
): ):
iteration = 0 iteration = 0
MAX_ITERATIONS = 2 MAX_ITERATIONS = 2
previous_iterations = List[InformationCollectionIteration] previous_iterations: List[InformationCollectionIteration] = []
while iteration < MAX_ITERATIONS: while iteration < MAX_ITERATIONS:
online_results: Dict = dict() online_results: Dict = dict()