(textbox_content)
| 583 | return log |
| 584 | |
| 585 | def compute_bullet_length(textbox_content): |
| 586 | total = 0 |
| 587 | for bullet in textbox_content: |
| 588 | for run in bullet['runs']: |
| 589 | total += len(run['text']) |
| 590 | return total |
| 591 | |
| 592 | def check_bounding_boxes(bboxes, overall_width, overall_height): |
| 593 | """ |
no outgoing calls
no test coverage detected