Skip to content

Commit 3db8faf

Browse files
committed
Ensure that colour.utilities.tstack definition returns a contiguous copy of the input array.
References #1309.
1 parent 9a109fd commit 3db8faf

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

colour/utilities/array.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -2167,10 +2167,7 @@ def tstack(
21672167

21682168
a = as_array(a, dtype)
21692169

2170-
if a.ndim <= 2:
2171-
return np.transpose(a)
2172-
2173-
return np.concatenate([x[..., None] for x in a], axis=-1)
2170+
return np.concatenate([x[..., np.newaxis] for x in a], axis=-1)
21742171

21752172

21762173
def tsplit(

0 commit comments

Comments
 (0)