File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ def setUp(self):
336
336
startConferenceOnEnter = True , endConferenceOnExit = True )
337
337
xml = r .toxml ()
338
338
339
- #parse twiml XML string with Element Tree and inspect structure
339
+ # parse twiml XML string with Element Tree and inspect structure
340
340
tree = ET .fromstring (xml )
341
341
self .conf = tree .find (".//Conference" )
342
342
@@ -364,8 +364,8 @@ def setUp(self):
364
364
dial .queue ("TestQueueAttribute" , url = "" , method = 'GET' )
365
365
xml = r .toxml ()
366
366
367
- #parse twiml XML string with Element Tree and inspect
368
- #structure
367
+ # parse twiml XML string with Element Tree and inspect
368
+ # structure
369
369
tree = ET .fromstring (xml )
370
370
self .conf = tree .find (".//Queue" )
371
371
@@ -387,8 +387,8 @@ def setUp(self):
387
387
waitUrl = 'wait' , waitUrlMethod = 'POST' )
388
388
xml = r .toxml ()
389
389
390
- #parse twiml XML string with Element Tree and inspect
391
- #structure
390
+ # parse twiml XML string with Element Tree and inspect
391
+ # structure
392
392
tree = ET .fromstring (xml )
393
393
self .conf = tree .find ("./Enqueue" )
394
394
Original file line number Diff line number Diff line change 7
7
from urllib .parse import urlencode , urlparse , urljoin
8
8
except ImportError :
9
9
# python 2 backward compatibility
10
- #noinspection PyUnresolvedReferences
10
+ # noinspection PyUnresolvedReferences
11
11
from urllib import urlencode
12
- #noinspection PyUnresolvedReferences
12
+ # noinspection PyUnresolvedReferences
13
13
from urlparse import urlparse , urljoin
14
14
15
15
try :
You can’t perform that action at this time.
0 commit comments