From 0b29dde35e207a9f2c4840c293d4f07eec78d832 Mon Sep 17 00:00:00 2001 From: Norbert Podhorszki Date: Wed, 6 Mar 2024 12:08:59 -0500 Subject: [PATCH] format more --- testing/adios2/python/TestBPWriteTypesHighLevelAPI.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/testing/adios2/python/TestBPWriteTypesHighLevelAPI.py b/testing/adios2/python/TestBPWriteTypesHighLevelAPI.py index cc031e2667..dbd9cf6635 100644 --- a/testing/adios2/python/TestBPWriteTypesHighLevelAPI.py +++ b/testing/adios2/python/TestBPWriteTypesHighLevelAPI.py @@ -58,8 +58,10 @@ # single value attributes with numpy variables s.write_attribute("attrStr", "Testing single string attribute") - print(f"---- type of np.array(data.i8[0]) is {type(np.array(data.i8[0]))}" - f" shape = {np.array(data.i8[0]).shape}") + print( + f"---- type of np.array(data.i8[0]) is {type(np.array(data.i8[0]))}" + f" shape = {np.array(data.i8[0]).shape}" + ) s.write_attribute("attrI8", np.array(data.i8[0])) s.write_attribute("attrI16", np.array(data.i16[0])) s.write_attribute("attrI32", np.array(data.i32[0]))