From dad7aef3598169f38ee9eef34515795365e8ee9f Mon Sep 17 00:00:00 2001 From: "neiljp (Neil Pilgrim)" Date: Sat, 19 Aug 2017 13:35:39 -0700 Subject: [PATCH] Type annotations: Annotate exclusive_fp. --- PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/Image.py b/PIL/Image.py index 1d5b0fdbd..2fd40c6c7 100644 --- a/PIL/Image.py +++ b/PIL/Image.py @@ -2615,7 +2615,7 @@ def open(fp, mode="r"): if mode != "r": raise ValueError("bad mode %r" % mode) - exclusive_fp = False + exclusive_fp = False # type: bool filename = "" if isPath(fp): filename = fp