Skip to content

Commit 0810cd0

Browse files
committed
Make linter happy
1 parent 1d348e1 commit 0810cd0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build_graphblas_cffi.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
# Windows wheels.yml configures suitesparse.sh to install GraphBLAS to "C:\\GraphBLAS".
2020
graphblas_root = "C:\\GraphBLAS" if is_win else "/usr/local"
2121

22-
include_dirs = [os.path.join(graphblas_root, "include"), os.path.join(graphblas_root, "include", "suitesparse")]
22+
include_dirs = [
23+
os.path.join(graphblas_root, "include"),
24+
os.path.join(graphblas_root, "include", "suitesparse")
25+
]
2326
library_dirs = [os.path.join(graphblas_root, "lib"), os.path.join(graphblas_root, "lib64")]
2427
if is_win:
2528
include_dirs.append(os.path.join(sys.prefix, "Library", "include"))

0 commit comments

Comments
 (0)