Skip to content

Commit 5d93071

Browse files
Update arraycontext/impl/pyopencl/taggable_cl_array.py
Co-authored-by: Alex Fikl <alexfikl@gmail.com>
1 parent ac5f974 commit 5d93071

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arraycontext/impl/pyopencl/taggable_cl_array.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ def with_tagged_axis(self, iaxis: int,
119119
"""
120120
Returns a copy of *self* with *iaxis*-th axis tagged with *tags*.
121121
"""
122-
new_axes = ((*self.axes[:iaxis],
123-
self.axes[iaxis].tagged(tags),
124-
*self.axes[iaxis + 1:]))
122+
new_axes = (*self.axes[:iaxis],
123+
self.axes[iaxis].tagged(tags),
124+
*self.axes[iaxis + 1:])
125125

126126
return type(self)(None, tags=self.tags, axes=new_axes,
127127
**_unwrap_cl_array(self))

0 commit comments

Comments
 (0)