Skip to content

Commit 653b21b

Browse files
committed
Remove debugging prints
1 parent 5a82898 commit 653b21b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/tikzplotlib/_path.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ def draw_path(data, path, draw_options=None, simplify=None):
112112

113113
def draw_pathcollection(data, obj):
114114
"""Returns PGFPlots code for a number of patch objects."""
115-
print("Drawing PathCollection")
116115
content = []
117116
# gather data
118117
assert obj.get_offsets() is not None
@@ -194,7 +193,6 @@ def draw_pathcollection(data, obj):
194193
ls = None
195194

196195
if add_individual_color_code:
197-
print("Adding individual color codes")
198196
draw_options.extend(
199197
[
200198
"scatter",
@@ -286,7 +284,6 @@ def draw_pathcollection(data, obj):
286284

287285
# remove duplicates
288286
draw_options = sorted(list(set(draw_options)))
289-
print("Draw options: ", draw_options)
290287

291288
len_row = sum(len(item) for item in draw_options)
292289
j0, j1, j2 = ("", ", ", "") if len_row < 80 else ("\n ", ",\n ", "\n")

0 commit comments

Comments
 (0)