Skip to content

Commit d4671a5

Browse files
committed
Split too long line
1 parent 30aa861 commit d4671a5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dpnp/dpnp_array.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,8 @@ def __imatmul__(self, other):
386386
# AxisError should indicate that the axes argument didn't work out
387387
# which should mean the second operand not being 2 dimensional.
388388
raise ValueError(
389-
"inplace matrix multiplication requires the first operand to have at least one and the second at least two dimensions."
389+
"inplace matrix multiplication requires the first operand to "
390+
"have at least one and the second at least two dimensions."
390391
)
391392
return self
392393

0 commit comments

Comments
 (0)