From 14ddfd30b2afc346038ded3bd6d782753e0e55ef Mon Sep 17 00:00:00 2001 From: nulano Date: Tue, 2 Jul 2019 09:31:05 +0200 Subject: [PATCH] fix lint --- Tests/test_imagefont.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tests/test_imagefont.py b/Tests/test_imagefont.py index ae9bbd52b2a..ace3b7d331c 100644 --- a/Tests/test_imagefont.py +++ b/Tests/test_imagefont.py @@ -465,9 +465,8 @@ def test_unicode_pilfont(self): font.getsize(u"’") @unittest.skipIf( - sys.platform.startswith("win32") and ( - sys.version.startswith("2") or hasattr(sys, "pypy_translation_info") - ), + sys.platform.startswith("win32") + and (sys.version.startswith("2") or hasattr(sys, "pypy_translation_info")), "requires CPython 3.x on Windows", ) def test_unicode_extended(self):