From 80c7e027076ae53c2bfc1d59695becc69207aba3 Mon Sep 17 00:00:00 2001 From: Igor Radovanovic <74266147+IgorWounds@users.noreply.github.com> Date: Fri, 19 May 2023 20:26:57 +0200 Subject: [PATCH] Remove \n (#5045) --- openbb_terminal/stocks/insider/openinsider_model.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openbb_terminal/stocks/insider/openinsider_model.py b/openbb_terminal/stocks/insider/openinsider_model.py index 0c1a441a2846..4610380efe0f 100644 --- a/openbb_terminal/stocks/insider/openinsider_model.py +++ b/openbb_terminal/stocks/insider/openinsider_model.py @@ -1498,17 +1498,18 @@ def get_print_insider_data(type_insider: str = "lcb"): lambda x: "\n".join(textwrap.wrap(x, width=10)) if isinstance(x, str) else x ) df["Company Name"] = df["Company Name"].apply( - lambda x: "\n".join(textwrap.wrap(x, width=20)) if isinstance(x, str) else x + lambda x: " ".join(textwrap.wrap(x, width=20)) if isinstance(x, str) else x ) df["Title"] = df["Title"].apply( lambda x: "\n".join(textwrap.wrap(x, width=10)) if isinstance(x, str) else x ) if type_insider == "lcb": df["Industry"] = df["Industry"].apply( - lambda x: "\n".join(textwrap.wrap(x, width=20)) if isinstance(x, str) else x + lambda x: " ".join(textwrap.wrap(x, width=20)) if isinstance(x, str) else x ) else: df["Insider Name"] = df["Insider Name"].apply( lambda x: "\n".join(textwrap.wrap(x, width=20)) if isinstance(x, str) else x ) + return df