Skip to content

Commit

Permalink
too-many-positional-arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
deeleeramone committed Jan 22, 2025
1 parent 8fc73a7 commit dd0bc5f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def send_figure(
if self.charting_settings.chart_style == "dark"
else "rgba(255,255,255,0)"
)
title = "Interactive Chart"
title = "OpenBB Platform"
fig.layout.title.text = re.sub(
r"<[^>]*>", "", fig.layout.title.text if fig.layout.title.text else title
)
Expand Down Expand Up @@ -245,7 +245,7 @@ async def process_image(self, export_image: Path):
opener = "open" if sys.platform == "darwin" else "xdg-open"
subprocess.check_call([opener, export_image]) # nosec: B603 # noqa: S603

def send_table(
def send_table( # pylint: disable=too-many-positional-arguments
self,
df_table: "DataFrame",
title: str = "",
Expand Down

0 comments on commit dd0bc5f

Please sign in to comment.