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 40dcef3 commit 296335eCopy full SHA for 296335e
1 file changed
server/workers/common/common/aquanavi/mapping.py
@@ -318,12 +318,15 @@ 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
- df = pd.concat([df_real], ignore_index=True)
329
+ df = pd.concat([df_real, df_test], ignore_index=True)
330
check_that_required_columns_exists(df, CSV_PATH_WITH_REAL_DATA)
331
332
# remove duplicates based on all columns
0 commit comments