Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
ArzelaAscoIi committed Oct 2, 2024
1 parent 15ca44e commit eeaa24e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions deepset_cloud_sdk/_service/files_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,6 @@ async def download(
await self._files.list_paginated(
workspace_name,
name=name,
content=content,
odata_filter=odata_filter,
limit=1,
)
Expand All @@ -527,7 +526,6 @@ async def download(
response = await self._files.list_paginated(
workspace_name=workspace_name,
name=name,
content=content,
odata_filter=odata_filter,
limit=batch_size,
after_file_id=after_file_id,
Expand Down Expand Up @@ -670,7 +668,6 @@ async def list_all(
response = await self._files.list_paginated(
workspace_name,
name=name,
content=content,
odata_filter=odata_filter,
limit=batch_size,
after_file_id=after_file_id,
Expand Down
2 changes: 0 additions & 2 deletions tests/unit/api/test_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ async def test_list_paginated(self, files_api: FilesAPI, mocked_deepset_cloud_ap
workspace_name="test_workspace",
limit=10,
name="things_1",
content="silly",
odata_filter="created_at eq '2022-06-21T16:40:00.634653+00:00' ",
)
assert result == FileList(
Expand All @@ -79,7 +78,6 @@ async def test_list_paginated(self, files_api: FilesAPI, mocked_deepset_cloud_ap
params={
"limit": 10,
"name": "things_1",
"content": "silly",
"filter": "created_at eq '2022-06-21T16:40:00.634653+00:00' ",
},
)
Expand Down

0 comments on commit eeaa24e

Please sign in to comment.