PEP8 fixes
This commit is contained in:
parent
16e7711e22
commit
fa15607773
3 changed files with 3 additions and 3 deletions
|
@ -52,7 +52,7 @@ class VideoLecturesNetIE(InfoExtractor):
|
|||
formats = []
|
||||
for v in switch.findall('./video'):
|
||||
proto = v.attrib.get('proto')
|
||||
if not proto in ['http', 'rtmp']:
|
||||
if proto not in ['http', 'rtmp']:
|
||||
continue
|
||||
f = {
|
||||
'width': int_or_none(v.attrib.get('width')),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue