diff --git a/litellm/integrations/gcs_bucket/gcs_bucket.py b/litellm/integrations/gcs_bucket/gcs_bucket.py index f5ff8ea717e..3cb62905531 100644 --- a/litellm/integrations/gcs_bucket/gcs_bucket.py +++ b/litellm/integrations/gcs_bucket/gcs_bucket.py @@ -112,7 +112,7 @@ class GCSBucketLogger(GCSBucketBase, AdditionalLoggingUtils): Returns: List of items to process, up to batch_size items """ - items_to_process = [] + items_to_process: List[GCSLogQueueItem] = [] while len(items_to_process) < self.batch_size: try: items_to_process.append(self.log_queue.get_nowait())