Spaces:
Runtime error
Runtime error
bikrammaharjan
commited on
Commit
•
1a47edb
1
Parent(s):
7b79cf7
TSLA stock sentiment
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ r_sentiment = re.compile(".*sentiment")
|
|
25 |
sentiment_cols = list(filter(r_sentiment.match, col_list))
|
26 |
|
27 |
r_post = re.compile(".*post")
|
28 |
-
post_list =
|
29 |
|
30 |
|
31 |
r_perc= re.compile(".*perc")
|
|
|
25 |
sentiment_cols = list(filter(r_sentiment.match, col_list))
|
26 |
|
27 |
r_post = re.compile(".*post")
|
28 |
+
post_list = list(filter(r_post.match, col_list))
|
29 |
|
30 |
|
31 |
r_perc= re.compile(".*perc")
|