Skip to content

Commit c02db24

Browse files
committed
Fix ruff error
1 parent 05bc380 commit c02db24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/visualization/columns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ def _generate_gpu_memory_usage_histogram_categorical_bins(
11481148
vram_labels = [str(v) for v in VRAM_CATEGORIES]
11491149

11501150
# Bin the data by closest category (floor to the largest category <= value)
1151-
bins = [-0.1] + VRAM_CATEGORIES # -0.1 to include 0 exactly
1151+
bins = [-0.1] + VRAM_CATEGORIES # -0.1 to include 0 exactly
11521152
binned = pd.cut(col_data, bins=bins, labels=vram_labels, right=False, include_lowest=True)
11531153
binned[col_data == 0] = "0"
11541154
binned[col_data > max(VRAM_CATEGORIES)] = str(max(VRAM_CATEGORIES))

0 commit comments

Comments
 (0)