Spaces:
Runtime error
Runtime error
bikrammaharjan
commited on
Commit
•
310a76b
1
Parent(s):
1a47edb
fix ValueError: too many values to unpack (expected 2)
Browse files
app.py
CHANGED
@@ -104,7 +104,7 @@ for i in range(1, len(dfSentiment)-1):
|
|
104 |
with placeholder.container():
|
105 |
|
106 |
# create columns
|
107 |
-
kpi1, kpi2 = st.columns(
|
108 |
|
109 |
# fill in those three columns with respective metrics or KPIs
|
110 |
kpi1.metric(
|
|
|
104 |
with placeholder.container():
|
105 |
|
106 |
# create columns
|
107 |
+
kpi1, kpi2 = st.columns(2)
|
108 |
|
109 |
# fill in those three columns with respective metrics or KPIs
|
110 |
kpi1.metric(
|