Преглед на файлове

Trying to speed up convert mongo into dataframe

ogert преди 4 години
родител
ревизия
0683e58d87
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      cdplib/db_handlers/MongodbHandler.py

+ 1 - 1
cdplib/db_handlers/MongodbHandler.py

@@ -326,7 +326,7 @@ class MongodbHandler:
         return_df = pd.concat(frames, axis=0, sort=False)
 
         if index is not None:
-                return_df.set_index(index, inplace=True)
+            return_df.set_index(index, inplace=True)
 
         self._log.info(('{} Rows were fetched from {}. DataFrame conversion is done, took {} seconds').format(len(return_df.index), collection_name if collection_name is not None else 'the database', time.time()-start_time))