(page: fitz.Page, box: tuple[float, float, float, float], fill, stroke=None, width: float = 0.7)
| 40 | |
| 41 | |
| 42 | def rect(page: fitz.Page, box: tuple[float, float, float, float], fill, stroke=None, width: float = 0.7) -> None: |
| 43 | page.draw_rect(fitz.Rect(*box), color=stroke, fill=fill, width=width) |
| 44 | |
| 45 | |
| 46 | def text( |
no outgoing calls
no test coverage detected