mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-23 17:28:38 +08:00
fixed: reportlab - incorrect type on function parameter (#14777)
This commit is contained in:
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user