From 92cf083330c3a497f543dd596bb7392ba9703344 Mon Sep 17 00:00:00 2001 From: Mark Baggett Date: Mon, 1 May 2023 14:34:48 -0400 Subject: [PATCH] Make declared instance match how it's used in example. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a814c4b..2e2c02f 100644 --- a/README.rst +++ b/README.rst @@ -134,7 +134,7 @@ See valid parameters in :code:`Works.FILTER_VALIDATOR`. Replace :code:`.` with : In [2]: works = Works() - In [3]: for i in w.filter(license__url='https://creativecommons.org/licenses/by', from_pub_date='2016').sample(5).select('title'): + In [3]: for i in works.filter(license__url='https://creativecommons.org/licenses/by', from_pub_date='2016').sample(5).select('title'): ...: print(i) ...: {'title': ['Vers une économie circulaire... de proximité ? Une spatialité à géométrie variable']}