Skip to content

Commit 1df9800

Browse files
committed
Fix pre-commit
1 parent 8eb354d commit 1df9800

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ def extensions():
3939
"include_dirs": [join(mkl_root, "include")],
4040
"library_dirs": [join(mkl_root, "lib"), join(mkl_root, "lib", "intel64")],
4141
"libraries": ["mkl_rt"],
42-
"rpaths" : ["$ORIGIN/../..", "$ORIGIN/../../.."] if sys.platform != 'win32' else [],
42+
"rpaths": (
43+
["$ORIGIN/../..", "$ORIGIN/../../.."] if sys.platform != "win32" else []
44+
),
4345
}
4446
else:
4547
raise ValueError("MKLROOT environment variable not set.")

0 commit comments

Comments
 (0)