@@ -289,7 +289,8 @@ class MongodbHandler:
self._log.log_and_raise_error(('An error occured trying to query data from {}, with query {}: {}:{}. \nError:{}').format(collection_name, attribute, comparison_operator, attribute_value, error))
return None
- if len(list(data))> 0:
+ print(len(list(data)))
+ if len(list(data)) > 0:
if return_as_dataframe:
return self.convert_mongo_data_into_dataframe(data, index, collection_name)
else: