Spaces:
Sleeping
Sleeping
harmdevries
commited on
Commit
•
b411370
1
Parent(s):
893a718
Update app.py
Browse files
app.py
CHANGED
@@ -93,7 +93,7 @@ fig.add_annotation({
|
|
93 |
})
|
94 |
|
95 |
|
96 |
-
for i, entry in df[::-1]:
|
97 |
fig.add_annotation(x='2023-01-01', y=i,
|
98 |
text=entry['Description'],
|
99 |
showarrow=False,
|
|
|
93 |
})
|
94 |
|
95 |
|
96 |
+
for i, entry in enumerate(df[::-1]):
|
97 |
fig.add_annotation(x='2023-01-01', y=i,
|
98 |
text=entry['Description'],
|
99 |
showarrow=False,
|