We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 547e4ae commit cd5029aCopy full SHA for cd5029a
1 file changed
server/workers/common/common/aquanavi/mapping.py
@@ -318,15 +318,12 @@ def load_and_prepare_dataframe():
318
DataFrame: Pandas DataFrame with information from CSVs.
319
"""
320
csv_real_path = Path(CSV_PATH_WITH_REAL_DATA)
321
- csv_test_path = Path(CSV_PATH_WITH_TEST_DATA)
322
323
check_that_csv_file_exists(csv_real_path)
324
- check_that_csv_file_exists(csv_test_path)
325
326
df_real = pd.read_csv(csv_real_path).fillna("")
327
- df_test = pd.read_csv(csv_test_path).fillna("")
328
329
- df = pd.concat([df_real, df_test], ignore_index=True)
+ df = pd.concat([df_real], ignore_index=True)
330
check_that_required_columns_exists(df, CSV_PATH_WITH_REAL_DATA)
331
332
return df
0 commit comments