From 22093c5c0b9f1da31f659c6bfac0bde2e98def50 Mon Sep 17 00:00:00 2001 From: Jaxsun McCarthy Huggan Date: Sun, 1 Jan 2023 12:33:36 -0800 Subject: [PATCH] remove errant print statement --- khinsider.py | 1 - 1 file changed, 1 deletion(-) diff --git a/khinsider.py b/khinsider.py index 5106c27..11226c3 100644 --- a/khinsider.py +++ b/khinsider.py @@ -328,7 +328,6 @@ def images(self): anchors = [a for a in table('a') if a.find('img')] urls = [a['href'] for a in anchors] images = [File(urljoin(self.url, url)) for url in urls] - print(images) return images def download(self, path='', makeDirs=True, formatOrder=None, verbose=False):