Skip to content

Commit 6452a60

Browse files
committed
fmt
1 parent 92213e3 commit 6452a60

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pykokkos/core/cpp_setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,9 @@ def generate_cmake(
219219
# layout must also match the caller's views (GPU = LayoutLeft)
220220
if is_host_execution_space(space):
221221
default_space = km.get_default_space()
222-
view_layout_space = default_space if not is_host_execution_space(default_space) else space
222+
view_layout_space = (
223+
default_space if not is_host_execution_space(default_space) else space
224+
)
223225
else:
224226
view_layout_space = space
225227
view_layout: str = str(

0 commit comments

Comments
 (0)