10000 fix bad block comments · madCode/twilio-python@4d18ca3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4d18ca3

Browse files
author
Doug Black
committed
fix bad block comments
1 parent 175239d commit 4d18ca3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

tests/test_twiml.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def setUp(self):
336336
startConferenceOnEnter=True, endConferenceOnExit=True)
337337
xml = r.toxml()
338338

339-
#parse twiml XML string with Element Tree and inspect structure
339+
# parse twiml XML string with Element Tree and inspect structure
340340
tree = ET.fromstring(xml)
341341
self.conf = tree.find(".//Conference")
342342

@@ -364,8 +364,8 @@ def setUp(self):
364364
dial.queue("TestQueueAttribute", url="", method='GET')
365365
xml = r.toxml()
366366

367-
#parse twiml XML string with Element Tree and inspect
368-
#structure
367+
# parse twiml XML string with Element Tree and inspect
368+
# structure
369369
tree = ET.fromstring(xml)
370370
self.conf = tree.find(".//Queue")
371371

@@ -387,8 +387,8 @@ def setUp(self):
387387
waitUrl='wait', waitUrlMethod='POST')
388388
xml = r.toxml()
389389

390-
#parse twiml XML string with Element Tree and inspect
391-
#structure
390+
# parse twiml XML string with Element Tree and inspect
391+
# structure
392392
tree = ET.fromstring(xml)
393393
self.conf = tree.find("./Enqueue")
394394

twilio/compat/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from urllib.parse import urlencode, urlparse, urljoin
88
except ImportError:
99
# python 2 backward compatibility
10-
#noinspection PyUnresolvedReferences
10+
# noinspection PyUnresolvedReferences
1111
from urllib import urlencode
12-
#noinspection PyUnresolvedReferences
12+
# noinspection PyUnresolvedReferences
1313
from urlparse import urlparse, urljoin
1414

1515
try:

0 commit comments

Comments
 (0)
0