[pinterest] Remove unnecessary variable

pull/249/head
David Roizenman 5 years ago
parent e84ce1e7a5
commit e81ac1aab7
No known key found for this signature in database
GPG Key ID: CD7B405D13E241B6

@ -51,7 +51,7 @@ class PinterestIE(InfoExtractor):
video_url = video_data.get("url") video_url = video_data.get("url")
video_thumbs = [ video_thumbs = [
v v
for (k, v) in pin_data.get("images").items() for (_, v) in pin_data.get("images").items()
if v.get("width") == v.get("height") if v.get("width") == v.get("height")
] ]
if not video_url: if not video_url:

Loading…
Cancel
Save