8000 Supporting filter_friendly_name by wanjunsli · Pull Request #245 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content

Supporting filter_friendly_name #245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jan 28, 2016
Prev Previous commit
Next Next commit
Reverting optional param
  • Loading branch information
wanjunsli committed Jan 19, 2016
commit 3bb6b3f0be07c1c0911402f9bbe3edb835831f67
2 changes: 1 addition & 1 deletion twilio/task_router/workflow_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class WorkflowRule:
The name of the filter
"""

def __init__(self, expression, targets, friendly_name=None):
def __init__(self, expression, targets, friendly_name):

self.expression = expression
self.targets = targets
Expand Down
2 changes: 1 addition & 1 deletion twilio/task_router/workflow_ruletarget.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class WorkflowRuleTarget:

The timeout before the reservation expires.
"""
def __init__(self, queue, expression, priority=None, timeout=None):
def __init__(self, queue, expression, priority, timeout):

self.queue = queue
self.expression = expression
Expand Down
0