Skip to content

Commit ac7848c

Browse files
committed
Lint fix
1 parent 7daca67 commit ac7848c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -731,9 +731,9 @@ def build_extensions(self):
731731
defs.append(("WORDS_BIGENDIAN", None))
732732

733733
if (
734-
sys.platform == "win32" and
735-
sys.version_info < (3, 9) and
736-
not (PLATFORM_PYPY or PLATFORM_MINGW)
734+
sys.platform == "win32"
735+
and sys.version_info < (3, 9)
736+
and not (PLATFORM_PYPY or PLATFORM_MINGW)
737737
):
738738
defs.append(("PILLOW_VERSION", '"\\"%s\\""' % PILLOW_VERSION))
739739
else:

0 commit comments

Comments
 (0)