From 78478dfcfb97378525151507a4ea7aae9484c01b Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 1 Apr 2020 10:13:12 +0300 Subject: [PATCH] Black and isort --- Tests/test_sgi_crash.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Tests/test_sgi_crash.py b/Tests/test_sgi_crash.py index 984234be4..c8917df4d 100644 --- a/Tests/test_sgi_crash.py +++ b/Tests/test_sgi_crash.py @@ -1,15 +1,18 @@ #!/usr/bin/env python -from .helper import PillowTestCase from PIL import Image -repro = ('Tests/images/sgi_overrun_expandrowF04.bin', - 'Tests/images/sgi_crash.bin', - ) +from .helper import PillowTestCase + +repro = ( + "Tests/images/sgi_overrun_expandrowF04.bin", + "Tests/images/sgi_crash.bin", +) + class TestSgiCrashes(PillowTestCase): def test_crashes(self): for path in repro: - with open(path, 'rb') as f: + with open(path, "rb") as f: im = Image.open(f) with self.assertRaises(IOError): im.load()