From 3a6ed5a1cd6135d32e14b512bac1e13d1fe8b44b Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 30 Nov 2019 22:51:50 +1100 Subject: [PATCH] Lint fixes --- src/PIL/ImageGrab.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/PIL/ImageGrab.py b/src/PIL/ImageGrab.py index 0e83ac07a..78e159003 100644 --- a/src/PIL/ImageGrab.py +++ b/src/PIL/ImageGrab.py @@ -15,10 +15,10 @@ # See the README file for information on usage and redistribution. # -import sys import os -import tempfile import subprocess +import sys +import tempfile from . import Image @@ -97,4 +97,3 @@ def grabclipboard(): return BmpImagePlugin.DibImageFile(io.BytesIO(data)) return data -