mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-28 06:04:17 +01:00
hls: avoid unused variable warning (pylint)
This commit is contained in:
parent
91a4718b36
commit
a8e63f4e60
@ -43,7 +43,7 @@ def _get_full_url(url, srcurl):
|
|||||||
|
|
||||||
def hlsparse(url):
|
def hlsparse(url):
|
||||||
data = get_http_data(url)
|
data = get_http_data(url)
|
||||||
globaldata, files = parsem3u(data)
|
files = (parsem3u(data))[1]
|
||||||
streams = {}
|
streams = {}
|
||||||
|
|
||||||
for i in files:
|
for i in files:
|
||||||
|
Loading…
Reference in New Issue
Block a user