summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openbb_terminal/openbb_terminal/controllers/utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbb_terminal/openbb_terminal/controllers/utils.py b/openbb_terminal/openbb_terminal/controllers/utils.py
index 6d886d9dab5..1ef3fb4e4e4 100644
--- a/openbb_terminal/openbb_terminal/controllers/utils.py
+++ b/openbb_terminal/openbb_terminal/controllers/utils.py
@@ -498,6 +498,9 @@ def print_rich_table( # noqa: PLR0912
if col == "":
df_outgoing = df_outgoing.rename(columns={col: " "})
+ # ensure everything on the dataframe is a string
+ df_outgoing = df_outgoing.applymap(str)
+
_get_backend().send_table(
df_table=df_outgoing,
title=title,