This patch fixes another formatting error that has been caught after updating the tool versions in the dts-check-format.sh script.
Signed-off-by: Koushik Bhargav Nimoji <[email protected]> --- dts/tests/TestSuite_cryptodev_latency.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dts/tests/TestSuite_cryptodev_latency.py b/dts/tests/TestSuite_cryptodev_latency.py index 411196c4c5..4e7d814faa 100644 --- a/dts/tests/TestSuite_cryptodev_latency.py +++ b/dts/tests/TestSuite_cryptodev_latency.py @@ -99,12 +99,12 @@ def _print_stats(self, test_vals: list[dict[str, int | float | str]]) -> None: print(f"{'Latency Results'.center(border_len)}\n{'=' * border_len}") for k, v in test_vals[0].items(): print(f"|{k.title():<{element_len}}", end="") - print(f"|\n{'='*border_len}") + print(f"|\n{'=' * border_len}") for test_val in test_vals: for k, v in test_val.items(): print(f"|{v:<{element_len}}", end="") - print(f"|\n{'='*border_len}") + print(f"|\n{'=' * border_len}") def _verify_latency( self, -- 2.54.0

