Skip to content

Commit

Permalink
Remove extraneous print
Browse files Browse the repository at this point in the history
  • Loading branch information
mattzh72 committed Jan 3, 2025
1 parent 7af4140 commit 4400cdb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion letta/cli/cli_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def list(arg: Annotated[ListChoice, typer.Argument]):
table.field_names = ["Name", "Text"]
for human in client.list_humans():
table.add_row([human.template_name, human.value.replace("\n", "")[:100]])
print(table)
elif arg == ListChoice.personas:
"""List all personas"""
table.field_names = ["Name", "Text"]
Expand Down

0 comments on commit 4400cdb

Please sign in to comment.