Skip to content

Commit 73e86f2

Browse files
committed
Deploy
1 parent d0950a2 commit 73e86f2

File tree

17 files changed

+16
-16
lines changed

17 files changed

+16
-16
lines changed

bandwidth/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

bandwidth/messaging/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

bandwidth/twofactorauth/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

bandwidth/voice/bxml/verbs/forward.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(self, to=None, from_=None, call_timeout=None, diversion_treatment=N
2727
"""
2828
self.to = to
2929
self.from_ = from_
30-
self.call_timeout = str(call_timeout)
30+
self.call_timeout = call_timeout
3131
self.diversion_treatment = diversion_treatment
3232
self.diversion_reason = diversion_reason
3333

@@ -36,7 +36,7 @@ def to_bxml(self):
3636
if self.to is not None:
3737
root.set("to", self.to)
3838
if self.call_timeout is not None:
39-
root.set("callTimeout", self.call_timeout)
39+
root.set("callTimeout", str(self.call_timeout))
4040
if self.from_ is not None:
4141
root.set("from", self.from_)
4242
if self.diversion_treatment is not None:

bandwidth/voice/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

bandwidth/webrtc/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

bandwidth_sdk.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: bandwidth-sdk
3-
Version: 6.12.0
3+
Version: 6.12.1
44
Summary: Bandwidth's set of APIs
55
Home-page: https://apimatic.io
66
Author: APIMatic SDK Generator

build/lib/bandwidth/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

build/lib/bandwidth/messaging/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

build/lib/bandwidth/twofactorauth/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BaseController(object):
2828

2929
def global_headers(self):
3030
return {
31-
'user-agent': 'python-sdk-refs/tags/python6.12.0'
31+
'user-agent': 'python-sdk-refs/tags/python6.12.1'
3232
}
3333

3434
def __init__(self, config, call_back=None):

0 commit comments

Comments
 (0)