Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ for i in range(ayear-backlogmax,ayear,1):
|
|
25 |
# nparray = np.array([])
|
26 |
df = df.reset_index() # make sure indexes pair with number of rows
|
27 |
for index, row in df.iterrows():
|
28 |
-
if (row[
|
29 |
continue
|
30 |
|
31 |
st.write(row[0],row[1],row[2],row[3],row[4],amonth,amonthday)
|
|
|
25 |
# nparray = np.array([])
|
26 |
df = df.reset_index() # make sure indexes pair with number of rows
|
27 |
for index, row in df.iterrows():
|
28 |
+
if (row[2]!=amonth) or (row[3]!=amonthday):
|
29 |
continue
|
30 |
|
31 |
st.write(row[0],row[1],row[2],row[3],row[4],amonth,amonthday)
|