# build-aux/mypy-stubs/xlwt/Cell.pyi - Type stubs for xlwt # # Copyright (C) 2025 Luke T. Shumaker # SPDX-License-Identifier: AGPL-3.0-or-later import xlwt.ExcelFormula class StrCell: rowx: int colx: int xf_idx: int sst_idx: int class BlankCell: rowx: int colx: int xf_idx: int class MulBlankCell: rowx: int colx1: int colx2: int xf_idx: int class NumberCell: rowx: int colx: int xf_idx: int number: float class BooleanCell: rowx: int colx: int xf_idx: int number: bool class ErrorCell: rowx: int colx: int xf_idx: int number: int class FormulaCell: rowx: int colx: int xf_idx: int frmla: xlwt.ExcelFormula.Formula calc_flags: int type _Cell = StrCell | BlankCell | MulBlankCell | NumberCell | BooleanCell | ErrorCell | FormulaCell