diff --git a/PIL/Image.py b/PIL/Image.py index a4024e1f1..c54349d15 100644 --- a/PIL/Image.py +++ b/PIL/Image.py @@ -1508,7 +1508,7 @@ class Image(object): self.paste(result, box) def point(self, lut, mode=None): - # type: (Union[List, Callable[[Any], Any]], Optional[Mode]) -> Image + # type: (Union[List[float], Callable[[float], float], ImagePointHandler], Optional[Mode]) -> Image """ Maps this image through a lookup table or function.