Niharmahesh commited on
Commit
b7715f9
·
verified ·
1 Parent(s): b2389fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -100,6 +100,8 @@ def load_and_concat_data():
100
 
101
  # Clean the location in place
102
  filtered_df['location'] = filtered_df['location'].apply(clean_location)
 
 
103
 
104
  return filtered_df
105
 
 
100
 
101
  # Clean the location in place
102
  filtered_df['location'] = filtered_df['location'].apply(clean_location)
103
+ #added new line to drop duplciate records
104
+ filtered_df = filtered_df.drop_duplicates()
105
 
106
  return filtered_df
107