8000 Fix flake8 warnings · sangsiri/twilio-python@72bf214 · GitHub
[go: up one dir, main page]

Skip to content
< 8000 header class="HeaderMktg header-logged-out js-details-container js-header Details f4 py-3" role="banner" data-is-top="true" data-color-mode=light data-light-theme=light data-dark-theme=dark>

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit 72bf214

Browse files
author
Mitch Friedman
committed
Fix flake8 warnings
1 parent f3a433c commit 72bf214

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