From 5979e0e09992aaf8fca99ebbfa76137e168d4b84 Mon Sep 17 00:00:00 2001 From: "neiljp (Neil Pilgrim)" Date: Sat, 19 Aug 2017 11:05:24 -0700 Subject: [PATCH] Type annotations: Improve Image.getproject(). --- src/PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index 1d0460d62..48228f2de 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -1346,7 +1346,7 @@ class Image(object): return self.im.getpixel(xy) def getprojection(self): - # type: () -> Tuple[List[Any], List[Any]] + # type: () -> Tuple[List[int], List[int]] """ Get projection to x and y axes