Skip to content

Commit

Permalink
Feature/SK-615 | Add missing doc string interface (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklastheman authored Jan 4, 2024
1 parent c4b3c4e commit 12f4d80
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion fedn/fedn/network/api/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,12 @@ def get_compute_package(self):

def list_compute_packages(self, limit: str = None, skip: str = None, include_active: str = None):
"""Get paginated list of compute packages from the statestore.
:param limit: The number of compute packages to return.
:type limit: str
:param skip: The number of compute packages to skip.
:type skip: str
:param include_active: Whether to include the active compute package or not.
:type include_active: str
:return: All compute packages as a json response.
:rtype: :class:`flask.Response`
"""
Expand Down

0 comments on commit 12f4d80

Please sign in to comment.