Files
Medios-Macina/SYS/result_table_helpers.py

10 lines
292 B
Python
Raw Normal View History

2026-03-25 22:39:30 -07:00
from __future__ import annotations
from typing import Any, Iterable
def add_row_columns(table: Any, columns: Iterable[tuple[str, Any]]) -> Any:
row = table.add_row()
for label, value in columns:
row.add_column(str(label), "" if value is None else str(value))
return row