Skip to content

Commit 3af518a

Browse files
Update tests/builders.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent bd56631 commit 3af518a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/builders.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ class TaskBuilder:
2525
history: list[Message] = field(default_factory=list)
2626
metadata: dict[str, Any] = field(default_factory=dict)
2727

28-
def with_id(self, id: str) -> 'TaskBuilder':
29-
self.id = id
28+
def with_id(self, task_id: str) -> 'TaskBuilder':
29+
self.id = task_id
3030
return self
3131

32+
3233
def with_context_id(self, context_id: str) -> 'TaskBuilder':
3334
self.context_id = context_id
3435
return self

0 commit comments

Comments
 (0)