Skip to content

Commit

Permalink
Add limit parameter to get_interaction_partners
Browse files Browse the repository at this point in the history
  • Loading branch information
cachitas committed Mar 26, 2024
1 parent 3dd8fb7 commit 92c0df8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stringdb/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ def get_interaction_partners(
self,
identifiers: List[str],
species: int,
# limit: Optional[int] = None,
limit: Optional[int] = None,
):
params = dict(
identifiers="\r".join(identifiers),
species=species,
# limit=limit,
limit=limit,
)
return self._get("interaction_partners", params=params)

0 comments on commit 92c0df8

Please sign in to comment.