Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -50,7 +50,7 @@ def get_panic_button_occurrences():
|
|
50 |
|
51 |
# Iterate through all rows in the data
|
52 |
for row in data:
|
53 |
-
panic_button = row[1] # Assuming the panic button values are in the second column
|
54 |
if panic_button in academic_list:
|
55 |
academic_list[panic_button] += 1
|
56 |
elif panic_button in non_academic_list:
|
|
|
50 |
|
51 |
# Iterate through all rows in the data
|
52 |
for row in data:
|
53 |
+
panic_button = row[1:] # Assuming the panic button values are in the second column
|
54 |
if panic_button in academic_list:
|
55 |
academic_list[panic_button] += 1
|
56 |
elif panic_button in non_academic_list:
|