Skip to content

Commit 52f4ab0

Browse files
committed
fix lint
1 parent fabd025 commit 52f4ab0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,11 @@ def get_proj_libraries():
242242
This function gets the PROJ libraries to cythonize with
243243
"""
244244
proj_libraries = ["proj"]
245-
if os.name == "nt" and proj_version >= (6, 0, 0) and proj_version < (6, 3, 0):
245+
if (
246+
os.name == "nt"
247+
and proj_version >= (6, 0, 0)
248+
and proj_version < (6, 3, 0)
249+
):
246250
proj_libraries = [
247251
"proj_{}_{}".format(proj_version[0], proj_version[1])
248252
]

0 commit comments

Comments
 (0)