From 1ecd3c265c2bed0ca7017b28bbd6a3439014d978 Mon Sep 17 00:00:00 2001 From: sinkaroid Date: Thu, 8 Dec 2022 18:03:38 +0700 Subject: [PATCH] idiot --- booru/utils/fetch.py | 1 - 1 file changed, 1 deletion(-) diff --git a/booru/utils/fetch.py b/booru/utils/fetch.py index 9242141..5a0ac89 100644 --- a/booru/utils/fetch.py +++ b/booru/utils/fetch.py @@ -132,7 +132,6 @@ async def request_wildcard(site: str, query: str) -> Union[list, None]: async with aiohttp.ClientSession() as session: async with session.get(f"{site}{query}*{sorting}") as resp: - print(resp.url) soup = BeautifulSoup(await resp.text(), "html.parser") get_all = soup.find_all("a") all_tags = [tag["href"] for tag in get_all]