Skip to content

Commit

Permalink
output type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanSoley committed Nov 15, 2023
1 parent dd846f0 commit 8bbde7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rubicon_ml/client/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 8bbde7d

Please sign in to comment.