Skip to content

Commit 17450a7

Browse files
committed
Fix table as well
1 parent 269437b commit 17450a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdv/multi_table/hma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def _print_estimate_warning(self):
271271
entry.append(table)
272272
entry.append(sum(metadata_columns[table]))
273273
total_est_cols += est_cols
274-
entry.append(est_cols)
274+
entry.append(min(est_cols, PERFORMANCE_ALERT_DISPLAY_CAP))
275275
print_table.append(entry)
276276

277277
if total_est_cols > MAX_NUMBER_OF_COLUMNS:

0 commit comments

Comments
 (0)