Skip to content

Commit

Permalink
mypy fix, refs #601
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Nov 1, 2024
1 parent d7b395b commit a7eedd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llm/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def __init__(
self._done = False
self.response_json = None
self.conversation = conversation
self.attachments = []
self.attachments: List[Attachment] = []

def __iter__(self) -> Iterator[str]:
self._start = time.monotonic()
Expand Down

0 comments on commit a7eedd1

Please sign in to comment.