Skip to content

Commit

Permalink
DOC: Add missing part of docstring
Browse files Browse the repository at this point in the history
skipci
  • Loading branch information
cortadocodes committed Nov 13, 2023
1 parent df053c0 commit 6b76d29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion octue/resources/child.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "Thomas Clark <[email protected]>"]
Expand Down

0 comments on commit 6b76d29

Please sign in to comment.