Fix linting issues

This commit is contained in:
DrakoCpp 2024-05-12 23:52:16 +02:00
parent 32177253d3
commit 32544da15b
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,9 @@
import re
import functools
from .common import InfoExtractor
from ..utils import (
ExtractorError,
OnDemandPagedList,
urlencode_postdata,
extract_attributes
)
@ -73,6 +76,7 @@ class MurrtubeIE(InfoExtractor):
'comment_count': self._search_regex(r'(?P<comment>[\d,]+) <span class="has-text-white">Comment<\/span>', video_page, 'comment', default=None)
}
class MurrtubeUserIE(MurrtubeIE): # XXX: Do not subclass from concrete IE
_WORKING = False
IE_DESC = 'Murrtube user profile'