mypy fix, refs #601

This commit is contained in:
Simon Willison 2024-11-01 14:21:01 -07:00
parent d7b395bb5b
commit a7eedd1d2e

View file

@ -160,7 +160,7 @@ class Response(ABC):
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()