From 46bac8a9139ad00cc451de939afc11a7545a3eff Mon Sep 17 00:00:00 2001 From: Juliana Karoline Date: Mon, 21 Oct 2024 15:47:42 -0300 Subject: [PATCH] Update docstring --- fastcrud/crud/fast_crud.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastcrud/crud/fast_crud.py b/fastcrud/crud/fast_crud.py index 10b1885..4c46291 100644 --- a/fastcrud/crud/fast_crud.py +++ b/fastcrud/crud/fast_crud.py @@ -2146,7 +2146,7 @@ async def update( Raises: MultipleResultsFound: If `allow_multiple` is `False` and more than one record matches the filters. - NoResultFound: If no record matches the filters. + NoResultFound: If no record matches the filters. (on version 0.15.3) ValueError: If extra fields not present in the model are provided in the update data. ValueError: If `return_as_model` is `True` but `schema_to_select` is not provided.