Skip to content

Commit

Permalink
fix income comparison error (#4029)
Browse files Browse the repository at this point in the history
  • Loading branch information
tehcoderer authored Jan 24, 2023
1 parent 686d89f commit 5cac9b6
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions openbb_terminal/reports/templates/equity.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1350,12 +1350,13 @@
" + scorr_similar\n",
" ]\n",
")\n",
"htmlcode += widgets.row(\n",
" [\n",
" widgets.h(3, f\"Income data for similar companies to {symbol}\")\n",
" + income_comparison.to_html()\n",
" ]\n",
")\n",
"if isinstance(income_comparison, pd.DataFrame):\n",
" htmlcode += widgets.row(\n",
" [\n",
" widgets.h(3, f\"Income data for similar companies to {symbol}\")\n",
" + income_comparison.to_html()\n",
" ]\n",
" )\n",
"htmlcode += widgets.row(\n",
" [\n",
" widgets.p(\n",
Expand Down

0 comments on commit 5cac9b6

Please sign in to comment.