Skip to content

Commit 4032836

Browse files
committed
remove print text_lines
1 parent 9db2ae0 commit 4032836

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

plotly/presentation_objs/presentation_objs.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def _boxes_in_slide(slide):
331331
return boxes
332332

333333

334-
def _return_layout_specs(num_of_boxes, style, text_line_count):
334+
def _return_layout_specs(num_of_boxes, style):
335335
# spec = (left, top, height, width)
336336
specs_for_boxes = []
337337

@@ -535,8 +535,6 @@ def _markdown_to_presentation_simple(self, markdown_string):
535535
text_block = string.join(text_lines, '\n')
536536
text_line_count = text_block.count('\n') + 1
537537

538-
print text_line_count
539-
540538
# pick slide styles
541539
if not slidestyle:
542540
num_of_boxes = len(url_lines) + len(lang_and_code_tuples)
@@ -548,7 +546,7 @@ def _markdown_to_presentation_simple(self, markdown_string):
548546
slidestyle = 'pictureright_tiled'
549547

550548
all_specs = _return_layout_specs(
551-
num_of_boxes, slidestyle, text_line_count
549+
num_of_boxes, slidestyle
552550
)
553551

554552
specs_for_boxes = all_specs[0]

0 commit comments

Comments
 (0)