Skip to content

Commit c467ded

Browse files
committed
monitoring/files/plot_migration_stats.py: run black
Just run black, otherwise we'll get patches which ran black later on it from Claude Code. Signed-off-by: Luis Chamberlain <[email protected]>
1 parent 548ce76 commit c467ded

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

playbooks/roles/monitoring/files/plot_migration_stats.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,10 @@ def plot_folio_migration(stats_files, output_file):
155155

156156
# Different line styles for baseline vs dev
157157
if is_dev:
158-
linestyle = (0, (5, 3)) # Custom dash pattern: 5 points on, 3 points off
158+
linestyle = (
159+
0,
160+
(5, 3),
161+
) # Custom dash pattern: 5 points on, 3 points off
159162
linewidth = 2.3
160163
alpha = 0.9
161164
else:
@@ -167,7 +170,10 @@ def plot_folio_migration(stats_files, output_file):
167170
color = color_map.get(name, plt.cm.tab10(idx % 10))
168171

169172
if is_dev:
170-
linestyle = (0, (5, 3)) # Custom dash pattern: 5 points on, 3 points off
173+
linestyle = (
174+
0,
175+
(5, 3),
176+
) # Custom dash pattern: 5 points on, 3 points off
171177
linewidth = 2.3
172178
alpha = 0.9
173179
else:

0 commit comments

Comments
 (0)