From 0ec5120c92e66fa7125ea2121903540c2d3275ec Mon Sep 17 00:00:00 2001 From: Kirill Safonov Date: Tue, 31 Dec 2024 01:06:31 +0100 Subject: [PATCH] Remove unnecessary comment --- databricks/sdk/mixins/files.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/databricks/sdk/mixins/files.py b/databricks/sdk/mixins/files.py index ff5baa4f..678b4b63 100644 --- a/databricks/sdk/mixins/files.py +++ b/databricks/sdk/mixins/files.py @@ -717,10 +717,6 @@ def _wrap_stream(self, file_path: str, downloadResponse: DownloadResponse): class _ResilientResponse(_RawResponse): - # _StreamingResponse uses two methods of the underlying response: - # - _response.iter_content(chunk_size=self._chunk_size) - # - _response.close - # we need to provide them and nothing else def __init__(self, api: FilesExt, file_path: str, file_last_modified: str, offset: int, underlying_response: _RawResponse):