Skip to content

Commit

Permalink
Style: Reformat code with Black 24.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
sanssecours committed Apr 23, 2024
1 parent bbc284f commit a3a6121
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions icolyzer/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit a3a6121

Please sign in to comment.