From 8bbde7d9fbe1476e9435d381c91a34932ad2d93b Mon Sep 17 00:00:00 2001 From: Ryan Soley Date: Wed, 15 Nov 2023 13:40:03 -0500 Subject: [PATCH] output type hints --- rubicon_ml/client/experiment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rubicon_ml/client/experiment.py b/rubicon_ml/client/experiment.py index 89746c28..7cfebcb0 100644 --- a/rubicon_ml/client/experiment.py +++ b/rubicon_ml/client/experiment.py @@ -404,7 +404,7 @@ def _get_experiments_from_tags(self, tag_key: str): return experiments - def get_child_experiments(self): + def get_child_experiments(self) -> List[Experiment]: """Get the experiments that are tagged as children of this experiment. Returns @@ -414,7 +414,7 @@ def get_child_experiments(self): """ return self._get_experiments_from_tags("child") - def get_parent_experiments(self): + def get_parent_experiments(self) -> List[Experiment]: """Get the experiments that are tagged as parents of this experiment. Returns