This is an automated email from the ASF dual-hosted git repository.
estrauss pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new c72461f30e [MINOR] Corrected formatting for failing formatting CI test
c72461f30e is described below
commit c72461f30e55c014ff1fb634759fb5430ff1c3b7
Author: e-strauss <[email protected]>
AuthorDate: Thu Jul 31 20:51:33 2025 +0200
[MINOR] Corrected formatting for failing formatting CI test
---
src/main/python/systemds/utils/converters.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/main/python/systemds/utils/converters.py
b/src/main/python/systemds/utils/converters.py
index 855342d3c1..93744a267e 100644
--- a/src/main/python/systemds/utils/converters.py
+++ b/src/main/python/systemds/utils/converters.py
@@ -124,7 +124,9 @@ def numpy_to_matrix_block(sds, np_arr: np.array):
)
if use_single_pipe:
sds._log.debug(
- "Using single FIFO pipe for reading
{}".format(format_bytes(total_bytes))
+ "Using single FIFO pipe for reading {}".format(
+ format_bytes(total_bytes)
+ )
)
pipe_id = 0
pipe = sds._FIFO_PY2JAVA_PIPES[pipe_id]