|
@@ -290,7 +290,7 @@ class MongodbHandler:
|
|
|
return None
|
|
|
|
|
|
print(len(list(data)))
|
|
|
- if len(list(data)) > 0:
|
|
|
+ if len(list(data)) != 0:
|
|
|
if return_as_dataframe:
|
|
|
return self.convert_mongo_data_into_dataframe(data, index, collection_name)
|
|
|
else:
|
|
@@ -323,7 +323,7 @@ class MongodbHandler:
|
|
|
df.set_index(index, inplace=True)
|
|
|
return df
|
|
|
else:
|
|
|
- self._log.warning(('No data for the query was found').format())
|
|
|
+ self._log.warning(('No data for the query was found when trying to create the dataframe').format())
|
|
|
return None
|
|
|
except Exception as error:
|
|
|
self._log.log_and_raise_error(('An error occured trying to convert mongo data into pd.Dataframe. \nError: {} ').format(error))
|