1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

unused imports

This commit is contained in:
Johan Andersson 2018-05-20 19:05:09 +02:00
parent 6dfdc8c6c0
commit e97b104573
2 changed files with 0 additions and 6 deletions

View File

@ -10,7 +10,6 @@ from urllib.parse import urlparse
from svtplay_dl.service import Service
from svtplay_dl.log import log
from svtplay_dl.fetcher.rtmp import RTMP
from svtplay_dl.error import ServiceError
class Hbo(Service):

View File

@ -3,11 +3,6 @@ import platform
import os
from yaml import safe_load
try:
from yaml import CLoader as Loader
except ImportError:
from yaml import Loader
configdata = None