@@ -83,6 +83,7 @@ method. The code returns all documents with a ``color`` field value of ``"yellow
8383 :language: python
8484
8585 .. output::
86+ :visible: false
8687
8788 {'_id': 2, 'name': 'bananas', 'qty': 7, 'rating': 4, 'color': 'yellow', 'type': ['cavendish']}
8889 {'_id': 4, 'name': 'pineapple', 'qty': 3, 'rating': 5, 'color': 'yellow'}
@@ -130,6 +131,7 @@ parameter to the ``find()`` method. The code returns all documents with a
130131 :language: python
131132
132133 .. output::
134+ :visible: false
133135
134136 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
135137 {'_id': 2, 'name': 'bananas', 'qty': 7, 'rating': 4, 'color': 'yellow', 'type': ['cavendish']}
@@ -147,6 +149,7 @@ parameter to the ``find()`` method. The code returns all documents with a
147149 :language: python
148150
149151 .. output::
152+ :visible: false
150153
151154 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
152155 {'_id': 2, 'name': 'bananas', 'qty': 7, 'rating': 4, 'color': 'yellow', 'type': ['cavendish']}
@@ -186,6 +189,7 @@ to see the corresponding code:
186189 :language: python
187190
188191 .. output::
192+ :visible: false
189193
190194 {'_id': 2, 'name': 'bananas', 'qty': 7, 'rating': 4, 'color': 'yellow', 'type': ['cavendish']}
191195 {'_id': 3, 'name': 'oranges', 'qty': 6, 'rating': 2, 'type': ['naval', 'mandarin']}
@@ -203,6 +207,7 @@ to see the corresponding code:
203207 :language: python
204208
205209 .. output::
210+ :visible: false
206211
207212 {'_id': 2, 'name': 'bananas', 'qty': 7, 'rating': 4, 'color': 'yellow', 'type': ['cavendish']}
208213 {'_id': 3, 'name': 'oranges', 'qty': 6, 'rating': 2, 'type': ['naval', 'mandarin']}
@@ -240,6 +245,7 @@ parameter to the ``find()`` method. The code returns all documents with a
240245 :language: python
241246
242247 .. output::
248+ :visible: false
243249
244250 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
245251 {'_id': 3, 'name': 'oranges', 'qty': 6, 'rating': 2, 'type': ['naval', 'mandarin']}
@@ -256,6 +262,7 @@ parameter to the ``find()`` method. The code returns all documents with a
256262 :language: python
257263
258264 .. output::
265+ :visible: false
259266
260267 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
261268 {'_id': 3, 'name': 'oranges', 'qty': 6, 'rating': 2, 'type': ['naval', 'mandarin']}
@@ -287,6 +294,7 @@ to see the corresponding code:
287294 :language: python
288295
289296 .. output::
297+ :visible: false
290298
291299 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
292300 {'_id': 2, 'name': 'bananas', 'qty': 7, 'rating': 4, 'color': 'yellow', 'type': ['cavendish']}
@@ -304,6 +312,7 @@ to see the corresponding code:
304312 :language: python
305313
306314 .. output::
315+ :visible: false
307316
308317 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
309318 {'_id': 2, 'name': 'bananas', 'qty': 7, 'rating': 4, 'color': 'yellow', 'type': ['cavendish']}
@@ -345,6 +354,7 @@ to see the corresponding code:
345354 :language: python
346355
347356 .. output::
357+ :visible: false
348358
349359 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
350360 {'_id': 4, 'name': 'pineapple', 'qty': 3, 'rating': 5, 'color': 'yellow'}
@@ -361,6 +371,7 @@ to see the corresponding code:
361371 :language: python
362372
363373 .. output::
374+ :visible: false
364375
365376 {'_id': 1, 'name': 'apples', 'qty': 5, 'rating': 3, 'color': 'red', 'type': ['fuji', 'honeycrisp']}
366377 {'_id': 4, 'name': 'pineapple', 'qty': 3, 'rating': 5, 'color': 'yellow'}
0 commit comments