Skip to content

Commit 9fce1a2

Browse files
committed
Renames an internal function
1 parent 9964483 commit 9fce1a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dpctl/tensor/_manipulation_functions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def roll(X, shift, axes=None):
288288
return res
289289

290290

291-
def arrays_validation(arrays):
291+
def _arrays_validation(arrays):
292292
n = len(arrays)
293293
if n == 0:
294294
raise TypeError("Missing 1 required positional argument: 'arrays'")
@@ -332,7 +332,7 @@ def concat(arrays, axis=0):
332332
333333
Joins a sequence of arrays along an existing axis.
334334
"""
335-
res_dtype, res_usm_type, exec_q = arrays_validation(arrays)
335+
res_dtype, res_usm_type, exec_q = _arrays_validation(arrays)
336336

337337
n = len(arrays)
338338
X0 = arrays[0]
@@ -387,7 +387,7 @@ def stack(arrays, axis=0):
387387
388388
Joins a sequence of arrays along a new axis.
389389
"""
390-
res_dtype, res_usm_type, exec_q = arrays_validation(arrays)
390+
res_dtype, res_usm_type, exec_q = _arrays_validation(arrays)
391391

392392
n = len(arrays)
393393
X0 = arrays[0]

0 commit comments

Comments
 (0)