1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# build-aux/mypy-stubs/xlrd/biffh.pyi - Type stubs for xlrd # # Copyright (C) 2025 Luke T. Shumaker <lukeshu@lukeshu.com> # SPDX-License-Identifier: AGPL-3.0-or-later import typing class BaseObject(object): def dump( self, f: typing.TextIO | None = None, header: str | None = None, footer: str | None = None, indent: int = 0, ) -> None: ...