summaryrefslogtreecommitdiff
path: root/build-aux/mypy-stubs/xlrd/biffh.pyi
blob: 9c423b0d1535a577ca32f98c9d3a7f8102feefc5 (plain)
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: ...