Skip to content

Commit

Permalink
Quick Fix - remove unnecessary print (#878)
Browse files Browse the repository at this point in the history
  • Loading branch information
mail4umar authored Nov 16, 2023
1 parent a0f98ba commit 07fd044
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion verticapy/plotting/_plotly/line.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ def draw(
if self.layout["kind"] == "area_percent":
row_sums = self.data["Y"].sum(axis=1)
self.data["Y"] = (((self.data["Y"]).T / row_sums) * 100).T
print(self.data)
marker_colors = self.get_colors()
if "colors" in style_kwargs:
marker_colors = (
Expand Down

0 comments on commit 07fd044

Please sign in to comment.