1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 10:42:34 +01:00

Clean up remnants of old code

This commit is contained in:
Ronsor 2022-10-24 13:49:32 -07:00
parent 5d5ea014dc
commit c89d105ecc

View File

@ -132,20 +132,7 @@ class AcqqComicExtractor(AcqqBase, Extractor):
subcategory = "comic" subcategory = "comic"
categorytransfer = True categorytransfer = True
pattern = (BASE_PATTERN + r"$") pattern = (BASE_PATTERN + r"$")
test = ( test = ()
("", {
"pattern": AcqqChapterExtractor.pattern,
"count": 32,
}),
("https://comic.naver.com/challenge/list?titleId=765124", {
"pattern": AcqqChapterExtractor.pattern,
"count": 25,
}),
("https://comic.naver.com/bestChallenge/list.nhn?titleId=789786", {
"pattern": AcqqChapterExtractor.pattern,
"count": ">= 12",
}),
)
def __init__(self, match): def __init__(self, match):
Extractor.__init__(self, match) Extractor.__init__(self, match)