8000 Fix PEP8 issues · Stackdriver/twilio-python@4333d06 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 1, 2018. It is now read-only.

Commit 4333d06

Browse files
committed
Fix PEP8 issues
1 parent adab479 commit 4333d06

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

tests/test_twiml.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,6 @@ def testSipUsernamePass(self):
425425
r = self.strip(r)
426426
self.assertEquals(r, '<?xml version="1.0" encoding="UTF-8"?><Response><Dial><Sip password="bar" username="foo">foo@example.com</Sip></Dial></Response>')
427427

428-
429428
def testSipUri(self):
430429
""" should redirect the call"""
431430
r = Response()

twilio/twiml.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
22
Make sure to check out the TwiML overview and tutorial
33
"""
4-
54
import xml.etree.ElementTree as ET
65
from six import iteritems
76

7+
88
class TwimlException(Exception):
99
pass
1010

@@ -500,5 +500,3 @@ class Uri(Verb):
500500
def __init__(self, uri, **kwargs):
501501
super(Uri, self).__init__(**kwargs)
502502
self.body = uri
503-
504-

0 commit comments

Comments
 (0)
0