8000 remove duplicates and fix typos · skyl/twilio-python@866eba5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 866eba5

Browse files
committed
remove duplicates and fix typos
1 parent 2f73bd2 commit 866eba5

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

twilio/twiml.py

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -434,28 +434,12 @@ def __init__(self, name, **kwargs):
434434
self.body = name
435435

436436

437-
class Queue(Verb):
438-
"""Specify queue in a nested Dial element.
439-
440-
:param name: friendly name for the queue
441-
:param url: url to a twiml document that executes after a call is dequeued
442-
and before the call is connected
443-
:param method: HTTP method for url GET/POST
444-
"""
445-
GET = 'GET'
446-
POST = 'POST'
447-
448-
def __init__(self, name, **kwargs):
449-
super(Queue, self).__init__(**kwargs)
450-
self.body = name
451-
452-
453437
class Enqueue(Verb):
454438
"""Enqueue the call into a specific queue.
455439
456440
:param name: friendly name for the queue
457441
:param action: url to a twiml document that executes when the call
458-
leaves the queue. When dequeued vial a <Dial> verb,
442+
leaves the queue. When dequeued via a <Dial> verb,
459443
this url is executed after the bridged parties disconnect
460444
:param method: HTTP method for action GET/POST
461445
:param wait_url: url to a twiml document that executes

0 commit comments

Comments
 (0)
0