Fix table not rendering

This commit is contained in:
Agustin Armellini Fischer 2025-03-25 21:35:26 +01:00
parent da7517b407
commit 9455a9acb1
2 changed files with 3 additions and 1 deletions

View File

@ -21,9 +21,10 @@
"source": [ "source": [
"# GOAT\n", "# GOAT\n",
"\n", "\n",
"## Overview\n",
"[GOAT](https://github.com/goat-sdk/goat) is the finance toolkit for AI agents.\n", "[GOAT](https://github.com/goat-sdk/goat) is the finance toolkit for AI agents.\n",
"\n", "\n",
"## Overview\n",
"\n",
"Create agents that can:\n", "Create agents that can:\n",
"\n", "\n",
"- Send and receive payments\n", "- Send and receive payments\n",

View File

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