This commit is contained in:
Kat Inskip 2025-07-14 09:39:32 -07:00
parent 44723fe32d
commit 196e1264e7
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -53,7 +53,7 @@ Download a number of images from Konachan given a list of tags and a count
:param tags: A list of tags to search for :param tags: A list of tags to search for
""" """
@add_source("konachan") @add_source("konachan")
def handle(count: int, tags: list) -> list: def handle(count: int, tags: list, config) -> list:
logging.debug(f"handle_konachan() called with count={count}, tags=[{', '.join(tags)}]") logging.debug(f"handle_konachan() called with count={count}, tags=[{', '.join(tags)}]")
# Get a list of URLs to download # Get a list of URLs to download
posts: list = request_posts(count, tags) posts: list = request_posts(count, tags)