From 8929e1e0c2a6411e69353ec2c4808c84f14da298 Mon Sep 17 00:00:00 2001 From: "neiljp (Neil Pilgrim)" Date: Thu, 24 Aug 2017 15:39:49 -0700 Subject: [PATCH] Type annotations: _imaging.pyi typo. --- PIL/_imaging.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/_imaging.pyi b/PIL/_imaging.pyi index 8d00adb04..9e95bdba0 100644 --- a/PIL/_imaging.pyi +++ b/PIL/_imaging.pyi @@ -63,7 +63,7 @@ class ImagingCore: def resize(self, size: Size, resample: int=...) -> ImagingCore: ... def transpose(self, method: int) -> ImagingCore: ... def transform2(self, box: LURD, core: ImagingCore, method: int, - data: list[float], resample: int=..., fill: int=...) -> None: ... + data: List[float], resample: int=..., fill: int=...) -> None: ... def isblock(self) -> int: ... def getbbox(self) -> Optional[LURD]: ... def getcolors(self, maxcolors: int) -> Optional[List[Tuple[int, Color]]]: ... ###################