Skip to content

Commit 8e802fe

Browse files
committed
fix: remove non assignment
1 parent 104aaad commit 8e802fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posthog/ai/gemini/gemini.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def _generate_content_streaming(
193193
):
194194
start_time = time.time()
195195
usage_stats: Dict[str, int] = {"input_tokens": 0, "output_tokens": 0}
196-
accumulated_content = []
196+
accumulated_content = [] # noqa: F824
197197

198198
kwargs_without_stream = {"model": model, "contents": contents, **kwargs}
199199
response = self._client.models.generate_content_stream(**kwargs_without_stream)

0 commit comments

Comments
 (0)