IanYeo commited on
Commit
c1e6082
·
1 Parent(s): b4a7dca

take only first system

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -131,6 +131,10 @@ def combine_full_component_system(cobie_flat, cobie_system_df):
131
 
132
  ]]
133
 
 
 
 
 
134
  return cobie_flat
135
 
136
 
 
131
 
132
  ]]
133
 
134
+ cobie_flat = cobie_flat.drop_duplicates(
135
+ subset=['ExtIdentifier'],
136
+ )
137
+
138
  return cobie_flat
139
 
140