Skip to content

Commit f58536f

Browse files
committed
basic duplicates removal
1 parent 230226a commit f58536f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

server/workers/common/common/aquanavi/mapping.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,9 @@ def load_and_prepare_dataframe():
326326
df = pd.concat([df_real], ignore_index=True)
327327
check_that_required_columns_exists(df, CSV_PATH_WITH_REAL_DATA)
328328

329+
# remove duplicates based on all columns
330+
df = df.drop_duplicates()
331+
329332
return df
330333

331334
def map_sample_data():

0 commit comments

Comments
 (0)