Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: galaxyproject/bioblend
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 36073c5010d0b72ddb0cf1b249bcbd5ada8ddd8a
Choose a base ref
..
head repository: galaxyproject/bioblend
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 790a7f785a0f4aba8dc9e56edf8866424fb11b6c
Choose a head ref
Showing with 3 additions and 1 deletion.
  1. +3 −1 bioblend/galaxy/folders/__init__.py
4 changes: 3 additions & 1 deletion bioblend/galaxy/folders/__init__.py
Original file line number Diff line number Diff line change
@@ -45,7 +45,9 @@ def create_folder(self, parent_folder_id: str, name: str, description: Optional[
payload["description"] = description
return self._post(payload=payload, id=parent_folder_id)

def show_folder(self, folder_id: str, contents: bool = False, limit: Optional[int] = 10, offset: Optional[int] = 0) -> Dict[str, Any]:
def show_folder(
self, folder_id: str, contents: bool = False, limit: Optional[int] = 10, offset: Optional[int] = 0
) -> Dict[str, Any]:
"""
Display information about a folder.