# build-aux/mypy-stubs/xlwt/Style.pyi - Type stubs for xlwt # # Copyright (C) 2025 Luke T. Shumaker # SPDX-License-Identifier: AGPL-3.0-or-later import xlwt.Formatting class XFStyle: num_format_str: str font: xlwt.Formatting.Font alignment: xlwt.Formatting.Alignment borders: xlwt.Formatting.Borders pattern: xlwt.Formatting.Pattern protection: xlwt.Formatting.Protection default_style: XFStyle = ... pattern_map: dict[str, xlwt.Formatting._Pattern] colour_map: dict[str, xlwt.Formatting._Pattern] def easyxf( strg_to_parse: str = "", num_format_str: str | None = None, field_sep: str = ",", line_sep: str = ";", intro_sep: str = ":", esc_char: str = "\\", debug: bool = False, ) -> XFStyle: ... def easyfont( strg_to_parse: str = "", field_sep: str = ",", esc_char: str = "\\", debug: bool = False, ) -> xlwt.Formatting.Font: ... def add_palette_colour( colour_str: str, colour_index: xlwt.Formatting._UserColourIndex ) -> None: ...