We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b475d23 commit 56bad76Copy full SHA for 56bad76
src/a2a/server/models.py
@@ -163,9 +163,9 @@ class TaskModel(TaskMixin, base):
163
@override
164
def __repr__(self) -> str:
165
"""Return a string representation of the task."""
166
- repr_template = '<TaskModel[{TBL}](id="{ID}", contextId="{CTX_ID}", status="{STATUS}")>'
+ repr_template = '<TaskModel[{TABLE}](id="{ID}", contextId="{CTX_ID}", status="{STATUS}")>'
167
return repr_template.format(
168
- TBL=table_name,
+ TABLE=table_name,
169
ID=self.id,
170
CTX_ID=self.contextId,
171
STATUS=self.status,
0 commit comments