This commit is contained in:
2026-03-25 22:39:30 -07:00
parent c31402c8f1
commit 562acd809c
46 changed files with 2367 additions and 1868 deletions

View File

@@ -0,0 +1,10 @@
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