From d3afeb086b283719485bb57082221e6094e33773 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Thu, 7 Mar 2024 17:46:21 +0000 Subject: [PATCH] Update ``DatasetClient.show_dataset()`` documentation --- CHANGELOG.md | 2 ++ bioblend/galaxy/datasets/__init__.py | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6986c08f..e60056a46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ * Dropped support for Python 3.7. Added support for Python 3.12. Added support for Galaxy releases 23.2 and 24.0. +* Dropped broken ``deleted`` parameter of ``DatasetClient.show_dataset()``. + * Parameters after ``password`` in the ``__init__()`` method of the ``GalaxyClient``, ``GalaxyInstance`` and ``ToolShedInstance`` classes are now keyword-only. diff --git a/bioblend/galaxy/datasets/__init__.py b/bioblend/galaxy/datasets/__init__.py index 0689597aa..ec150aa98 100644 --- a/bioblend/galaxy/datasets/__init__.py +++ b/bioblend/galaxy/datasets/__init__.py @@ -49,9 +49,6 @@ def show_dataset(self, dataset_id: str, hda_ldda: HdaLdda = "hda") -> Dict[str, :type dataset_id: str :param dataset_id: Encoded dataset ID - :type deleted: bool - :param deleted: Whether to return results for a deleted dataset - :type hda_ldda: str :param hda_ldda: Whether to show a history dataset ('hda' - the default) or library dataset ('ldda').