fix: fpdf2: Allow "BI" for _FontStyle in fpdf.pyi (#12677)

This commit is contained in:
João Henrique
2024-09-18 13:02:29 -03:00
committed by GitHub
parent eb7df6d118
commit 0610a79fdb

View File

@@ -67,7 +67,7 @@ __all__ = [
_Orientation: TypeAlias = Literal["", "portrait", "p", "P", "landscape", "l", "L"]
_Format: TypeAlias = Literal["", "a3", "A3", "a4", "A4", "a5", "A5", "letter", "Letter", "legal", "Legal"]
_FontStyle: TypeAlias = Literal["", "B", "I"]
_FontStyle: TypeAlias = Literal["", "B", "I", "BI"]
_FontStyles: TypeAlias = Literal["", "B", "I", "U", "BU", "UB", "BI", "IB", "IU", "UI", "BIU", "BUI", "IBU", "IUB", "UBI", "UIB"]
FPDF_VERSION: Final[str]