Add dimensions for openpyxl Image. (#12362)

This commit is contained in:
Noam
2024-07-18 13:28:39 +03:00
committed by GitHub
parent 6552aa3d2c
commit 6b919d76e2

View File

@@ -14,6 +14,8 @@ PILImage: ModuleType | Literal[False]
class Image:
anchor: str
ref: _PILImageImage | _PILImageFilePath
width: int
height: int
format: str
def __init__(self, img: _PILImageImage | _PILImageFilePath) -> None: ...
@property