Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -139,7 +139,7 @@ if 'key0' in st.session_state:
|
|
139 |
group_counts = {}
|
140 |
|
141 |
# Iterate through each sublist
|
142 |
-
for index, row in df_vul:
|
143 |
|
144 |
# Iterate through each group in the sublist
|
145 |
for sublist in row['Vulnerability Label']:
|
|
|
139 |
group_counts = {}
|
140 |
|
141 |
# Iterate through each sublist
|
142 |
+
for index, row in df_vul.iterrows():
|
143 |
|
144 |
# Iterate through each group in the sublist
|
145 |
for sublist in row['Vulnerability Label']:
|