Skip to content

Commit

Permalink
finish parameter renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Feb 4, 2025
1 parent 42b8c06 commit 9ce5013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bioblend/galaxy/folders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def contents_iter(
:param folder_id: the folder's encoded id, prefixed by 'F'
:type batch_size: int
:param limit: Batch size to be used internally.
:param batch_size: Batch size to be used internally.
:type include_deleted: bool
:param include_deleted: Whether to include deleted items.
Expand All @@ -139,7 +139,7 @@ def contents_iter(
chunk = self._get(id=folder_id, contents=True, params=params)
total_rows = chunk["metadata"]["total_rows"]
yield from chunk["folder_contents"]
params["offset"] += limit
params["offset"] += batch_size

def delete_folder(self, folder_id: str, undelete: bool = False) -> Dict[str, Any]:
"""
Expand Down

0 comments on commit 9ce5013

Please sign in to comment.