From 09ea210d348c55df35e233f9e0c61ae2a556049e Mon Sep 17 00:00:00 2001 From: Nathan Sharp Date: Mon, 18 Dec 2023 14:59:20 -0500 Subject: [PATCH] Fix small typo in Objects vs Dictionaries Fixed small typo where the "sense" of the statement was reverse of what you actually should use. The example below was correct. --- doc/source/quickstart.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/quickstart.rst b/doc/source/quickstart.rst index 977d1adec..01073974a 100644 --- a/doc/source/quickstart.rst +++ b/doc/source/quickstart.rst @@ -157,7 +157,7 @@ You can use the ``offset`` and ``limit`` query parameters to paginate items in a Objects vs dictionaries ----------------------------------- -Most ``get``, ``create`` and ``update`` functions can optionally return dictionaries rather than class objects by setting ``as_objects=True``. +Most ``get``, ``create`` and ``update`` functions can optionally return dictionaries rather than class objects by setting ``as_objects=False``. This is especially useful when the returned data needs to be further manipulated by popular packages such as ``Numpy``, ``Pandas``, etc. @@ -342,4 +342,4 @@ A *get* call on a non-existing resource will return a 404 Client Error. print(e) #Output: - #404 Client Error: Not Found for: GET https://localhost:8443/rep//jms/api/v1/projects/non_existing_project \ No newline at end of file + #404 Client Error: Not Found for: GET https://localhost:8443/rep//jms/api/v1/projects/non_existing_project