From 6b76d29b754a015a8377c555bda641a13eeb56f4 Mon Sep 17 00:00:00 2001 From: cortadocodes Date: Mon, 13 Nov 2023 12:25:08 +0000 Subject: [PATCH] DOC: Add missing part of docstring skipci --- octue/resources/child.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/octue/resources/child.py b/octue/resources/child.py index f7960a6a1..645544ee1 100644 --- a/octue/resources/child.py +++ b/octue/resources/child.py @@ -114,7 +114,7 @@ def ask_multiple(self, *questions, raise_errors=True, max_retries=0, prevent_ret :param questions: any number of questions provided as dictionaries of arguments to the `Child.ask` method :param bool raise_errors: if `True`, an error is raised and no answers are returned if any of the individual questions raise an error; if `False`, answers are returned for all successful questions while errors are returned unraised for any failed ones :param int max_retries: retry any questions that failed up to this number of times (note: this will have no effect unless `raise_errors=False`) - :param list|None prevent_retries_when: + :param list|None prevent_retries_when: prevent retrying any questions that fail with an exception type in this list (note: this will have no effect unless `raise_errors=False`) :raises Exception: if any question raises an error if `raise_errors` is `True` :return list: the answers or caught errors of the questions in the same order as asked """ diff --git a/pyproject.toml b/pyproject.toml index 34b4247fd..25219d1a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "octue" -version = "0.49.3" +version = "0.50.0" description = "A package providing template applications for data services, and a python SDK to the Octue API." readme = "README.md" authors = ["Marcus Lugg ", "Thomas Clark "]