Skip to content

Commit 692cb41

Browse files
changes for CI's black to lighten up
1 parent 62dcdd2 commit 692cb41

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ def extensions():
115115
runtime_library_dirs = []
116116

117117
extension_args = {
118-
"depends": [dppl_sycl_interface_include,],
118+
"depends": [
119+
dppl_sycl_interface_include,
120+
],
119121
"include_dirs": [np.get_include(), dppl_sycl_interface_include],
120122
"extra_compile_args": eca + get_other_cxxflags(),
121123
"extra_link_args": ela,
@@ -128,12 +130,16 @@ def extensions():
128130
extensions = [
129131
Extension(
130132
"dpctl._sycl_core",
131-
[os.path.join("dpctl", "_sycl_core.pyx"),],
133+
[
134+
os.path.join("dpctl", "_sycl_core.pyx"),
135+
],
132136
**extension_args
133137
),
134138
Extension(
135139
"dpctl.memory._memory",
136-
[os.path.join("dpctl", "memory", "_memory.pyx"),],
140+
[
141+
os.path.join("dpctl", "memory", "_memory.pyx"),
142+
],
137143
**extension_args
138144
),
139145
]

0 commit comments

Comments
 (0)