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 230226a commit f58536fCopy full SHA for f58536f
1 file changed
server/workers/common/common/aquanavi/mapping.py
@@ -326,6 +326,9 @@ def load_and_prepare_dataframe():
326
df = pd.concat([df_real], ignore_index=True)
327
check_that_required_columns_exists(df, CSV_PATH_WITH_REAL_DATA)
328
329
+ # remove duplicates based on all columns
330
+ df = df.drop_duplicates()
331
+
332
return df
333
334
def map_sample_data():
0 commit comments