We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9c870 commit 0122681Copy full SHA for 0122681
src/pynite_plotly/rendering.py
@@ -1878,14 +1878,11 @@ def add_point_labels(
1878
for idx, point in enumerate(points):
1879
if isinstance(labels[idx], list):
1880
label, text_color = labels[idx]
1881
- print(f"{label=} | {text_color=}")
1882
else:
1883
label = labels[idx]
1884
x, y, z = point
1885
text_label = f"{start_bold_tag}{label}{end_bold_tag}"
1886
1887
-
1888
- # print(f"Annotation: {text_label=} | {point=}")
1889
annotations.append(
1890
dict(
1891
x=x,
0 commit comments