Skip to content

Commit d320a96

Browse files
committed
fix: linting
1 parent 1d5bc5e commit d320a96

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/deepset_mcp/api/search_history/resource.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ def _base_path(self) -> str:
3232
return f"v1/workspaces/{quote(self._workspace, safe='')}/search_history"
3333

3434
def _pipeline_path(self, pipeline_name: str) -> str:
35-
return f"v1/workspaces/{quote(self._workspace, safe='')}/pipelines/{quote(pipeline_name, safe='')}/search_history"
35+
return (
36+
f"v1/workspaces/{quote(self._workspace, safe='')}/pipelines/{quote(pipeline_name, safe='')}/search_history"
37+
)
3638

37-
async def list(
38-
self, limit: int = 10, after: str | None = None
39-
) -> PaginatedResponse[SearchHistoryEntry]:
39+
async def list(self, limit: int = 10, after: str | None = None) -> PaginatedResponse[SearchHistoryEntry]:
4040
"""List search history entries in the workspace.
4141
4242
:param limit: Maximum number of entries to return per page.

0 commit comments

Comments
 (0)