(block)
| 202 | |
| 203 | # get sub-lines from block: line or table block |
| 204 | def sub_line(block): |
| 205 | return block if isinstance(block, Line) else Line().update_bbox(block.outer_bbox) |
| 206 | |
| 207 | # exclude potential shading in white bg-color |
| 208 | shadings_exclude_white = list(filter( |
nothing calls this directly
no test coverage detected