Skip to content

Commit a4b9e0e

Browse files
committed
EDGE-630 Remove type hinting
1 parent c7cc402 commit a4b9e0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bandwidth/webrtc/utils/transfer_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@copyright Bandwidth INC
77
"""
88

9-
def generate_transfer_bxml(device_token: str, voice_call_id: str, sip_uri: str ='sip:sipx.webrtc.bandwidth.com:5060'):
9+
def generate_transfer_bxml(device_token, voice_call_id, sip_uri='sip:sipx.webrtc.bandwidth.com:5060'):
1010
"""
1111
Returns BXML string with WebRTC a device token to perform a SIP transfer
1212
:param device_token: The device token
@@ -15,7 +15,7 @@ def generate_transfer_bxml(device_token: str, voice_call_id: str, sip_uri: str =
1515
"""
1616
return '<?xml version="1.0" encoding="UTF-8"?><Response>' + generate_transfer_bxml_verb(device_token, voice_call_id, sip_uri) + '</Response>'
1717

18-
def generate_transfer_bxml_verb(device_token: str, voice_call_id: str, sip_uri: str ='sip:sipx.webrtc.bandwidth.com:5060'):
18+
def generate_transfer_bxml_verb(device_token, voice_call_id, sip_uri='sip:sipx.webrtc.bandwidth.com:5060'):
1919
"""
2020
Returns the Transfer verb to perform the SIP transfer
2121
:param device_token: The device token

0 commit comments

Comments
 (0)