Skip to content

Commit ce0ff91

Browse files
authored
Remove documentation for subscribing to multiple feeds
The code does not provide for this.
1 parent 91efc34 commit ce0ff91

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

adafruit_io/adafruit_io.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -252,13 +252,6 @@ def subscribe(self, feed_key=None, group_key=None, shared_user=None):
252252
.. code-block:: python
253253
254254
client.subscribe('temperature')
255-
256-
Example of subscribing to two Adafruit IO feeds: 'temperature'
257-
and 'humidity'.
258-
259-
.. code-block:: python
260-
261-
client.subscribe([('temperature'), ('humidity')])
262255
"""
263256
if shared_user is not None and feed_key is not None:
264257
validate_feed_key(feed_key)
@@ -333,13 +326,6 @@ def unsubscribe(self, feed_key=None, group_key=None, shared_user=None):
333326
334327
client.unsubscribe('temperature')
335328
336-
Example of unsubscribing from two feeds: 'temperature'
337-
and 'humidity'
338-
339-
.. code-block:: python
340-
341-
client.unsubscribe([('temperature'), ('humidity')])
342-
343329
Example of unsubscribing from a shared feed.
344330
345331
.. code-block:: python

0 commit comments

Comments
 (0)