fixed: reportlab - incorrect type on function parameter (#14777)

This commit is contained in:
Aditya Paul
2025-09-25 13:28:19 +05:30
committed by GitHub
parent af834e4e3e
commit 588be69bb0
@@ -249,7 +249,9 @@ class BaseDocTemplate:
def handle_breakBefore(self, flowables: list[Flowable]) -> None: ...
def handle_keepWithNext(self, flowables: list[Flowable]) -> None: ...
def handle_flowable(self, flowables: list[Flowable]) -> None: ...
def build(self, flowables: list[Flowable], filename: str | None = None, canvasmaker: _CanvasMaker = ...) -> None: ...
def build(
self, flowables: list[Flowable], filename: str | IO[bytes] | None = None, canvasmaker: _CanvasMaker = ...
) -> None: ...
def notify(self, kind: str, stuff: Any) -> None: ...
def pageRef(self, label: str) -> None: ...
def multiBuild(self, story: list[Flowable], maxPasses: int = 10, **buildKwds: Any) -> int: ...