Add a number of properties to PIL.ImageStat.Stat (#11303)

This commit is contained in:
Adam Dangoor
2024-01-24 12:39:05 +00:00
committed by GitHub
parent 3195d86538
commit b6d121600e

View File

@@ -3,6 +3,11 @@ from _typeshed import Incomplete
class Stat:
h: Incomplete
bands: Incomplete
count: list[int]
mean: list[float]
rms: list[float]
stddev: list[float]
var: list[float]
def __init__(self, image_or_list, mask: Incomplete | None = None) -> None: ...
def __getattr__(self, id: str): ...