Commit
·
fe21a95
1
Parent(s):
c421bc7
Update app.py
Browse files
app.py
CHANGED
|
@@ -281,7 +281,7 @@ class Application:
|
|
| 281 |
data = st.text_area("Input", height=10)
|
| 282 |
|
| 283 |
# Parse text items
|
| 284 |
-
data = self.parse(data)
|
| 285 |
|
| 286 |
# Process current action
|
| 287 |
self.process(data)
|
|
|
|
| 281 |
data = st.text_area("Input", height=10)
|
| 282 |
|
| 283 |
# Parse text items
|
| 284 |
+
data = self.parse(data) if data else data
|
| 285 |
|
| 286 |
# Process current action
|
| 287 |
self.process(data)
|