From a3a6121382977230968abdfa004b1cb49232bce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Schwaiger?= Date: Tue, 23 Apr 2024 14:58:04 +0200 Subject: [PATCH] Style: Reformat code with Black 24.4. --- icolyzer/plotter.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/icolyzer/plotter.py b/icolyzer/plotter.py index c04a1de..5732c93 100644 --- a/icolyzer/plotter.py +++ b/icolyzer/plotter.py @@ -139,10 +139,12 @@ def print_info(self) -> None: sys.exit(1) print( - " ".join([ - f"Avg {axis.upper()}: {int(stats.loc['mean'][axis])}" - for axis in self.axes - ]) + " ".join( + [ + f"Avg {axis.upper()}: {int(stats.loc['mean'][axis])}" + for axis in self.axes + ] + ) ) std_dev = stats.loc["std", self.axes]