Update eq_html.py
Browse files- eq_html.py +1 -0
eq_html.py
CHANGED
|
@@ -9,6 +9,7 @@ def build_eq_html(symbol):
|
|
| 9 |
# CALL eq() function internally
|
| 10 |
# -------------------------------------------------------
|
| 11 |
out = eq(symbol) # <-- your existing eq(symbol)
|
|
|
|
| 12 |
if not isinstance(out, dict):
|
| 13 |
return "<h3>Error: EQ data not available</h3>"
|
| 14 |
|
|
|
|
| 9 |
# CALL eq() function internally
|
| 10 |
# -------------------------------------------------------
|
| 11 |
out = eq(symbol) # <-- your existing eq(symbol)
|
| 12 |
+
print(out)
|
| 13 |
if not isinstance(out, dict):
|
| 14 |
return "<h3>Error: EQ data not available</h3>"
|
| 15 |
|