can check results in one thread

This commit is contained in:
2022-05-16 07:01:33 +02:00
parent dbdb88600a
commit 5ac4f6a0fb
4 changed files with 29 additions and 19 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ class DataManager:
def get_all_successful_items_for_day(self, day, source_from: Union[str, None]):
doc_ref = self._db.collection(day)
if source_from is not None:
doc_ref.where()
doc_ref.where(u'source_from', u'==', source_from)
return doc_ref
def save_sim_info(self, sim_info: SimInfoPojo):