From e182c188e0ceca939fa7ba8f5657228136f3ab1f Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Thu, 27 Jan 2022 14:02:13 +0200 Subject: [PATCH] Fix docstrings (#560) --- clearml/datasets/dataset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clearml/datasets/dataset.py b/clearml/datasets/dataset.py index 5f63d3b4..3bd78e00 100644 --- a/clearml/datasets/dataset.py +++ b/clearml/datasets/dataset.py @@ -660,7 +660,7 @@ class Dataset(object): def list_modified_files(self, dataset_id=None): # type: (str) -> List[str] """ - return a list of files removed when comparing to a specific dataset_version + return a list of files modified when comparing to a specific dataset_version :param dataset_id: dataset id (str) to compare against, if None is given compare against the parents datasets :return: List of files with relative path @@ -679,7 +679,7 @@ class Dataset(object): def list_added_files(self, dataset_id=None): # type: (str) -> List[str] """ - return a list of files removed when comparing to a specific dataset_version + return a list of files added when comparing to a specific dataset_version :param dataset_id: dataset id (str) to compare against, if None is given compare against the parents datasets :return: List of files with relative path