Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Jul 2, 2019
1 parent 86d4c53 commit 14ddfd3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Tests/test_imagefont.py
Expand Up @@ -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):
Expand Down

0 comments on commit 14ddfd3

Please sign in to comment.