Fix finance table

This commit is contained in:
Agustin Armellini Fischer 2025-03-25 21:20:47 +01:00
parent 0e03664c16
commit da7517b407

View File

@ -316,6 +316,7 @@ def get_finance_table() -> str:
]
for h in header[1:]:
row.append(feats.get(h))
return "\n".join(["|".join(row) for row in rows])
def get_search_tools_table() -> str: