From 9c350d86e3e4c173636dcba5799eb1647776dd18 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(). --- PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/Image.py b/PIL/Image.py index 2aab835db..3a3817cd1 100644 --- a/PIL/Image.py +++ b/PIL/Image.py @@ -1325,7 +1325,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