8000 passing timeout through to task queue · madCode/twilio-python@2cd5f66 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2cd5f66

Browse files
committed
passing timeout through to task queue
1 parent 5b0c820 commit 2cd5f66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

twilio/rest/resources/task_router/task_queues.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ class TaskQueues(ListResource):
3030
instance = TaskQueue
3131
key = "task_queues"
3232

33-
def __init__(self, base_uri, auth, **kwargs):
34-
super(TaskQueues, self).__init__(base_uri, auth, **kwargs)
33+
def __init__(self, base_uri, auth, timeout, **kwargs):
34+
super(TaskQueues, self).__init__(base_uri, auth, timeout, **kwargs)
3535
self.statistics = Statistics(self.uri, auth, **kwargs)
3636

3737
def create(self, friendly_name, assignment_activity_sid,

0 commit comments

Comments
 (0)
0