Skip to content

Commit 0122681

Browse files
committed
hotfix: remove print() calls
1 parent cf9c870 commit 0122681

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/pynite_plotly/rendering.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1878,14 +1878,11 @@ def add_point_labels(
18781878
for idx, point in enumerate(points):
18791879
if isinstance(labels[idx], list):
18801880
label, text_color = labels[idx]
1881-
print(f"{label=} | {text_color=}")
18821881
else:
18831882
label = labels[idx]
18841883
x, y, z = point
18851884
text_label = f"{start_bold_tag}{label}{end_bold_tag}"
18861885

1887-
1888-
# print(f"Annotation: {text_label=} | {point=}")
18891886
annotations.append(
18901887
dict(
18911888
x=x,

0 commit comments

Comments
 (0)