From b2f15eb76c5912d2459919da4b7eb5cdf296415e Mon Sep 17 00:00:00 2001 From: Kevin Pedro Date: Wed, 5 Mar 2025 21:03:35 -0600 Subject: [PATCH] satisfy linter --- sites/arbitrary.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sites/arbitrary.py b/sites/arbitrary.py index e57dce6..f545fc2 100644 --- a/sites/arbitrary.py +++ b/sites/arbitrary.py @@ -77,6 +77,7 @@ class Arbitrary(Site): # set of already processed urls. Stored to detect loops. found_content_urls = set() content_url = definition.url + def process_content_url(content_url): if content_url in found_content_urls: return False @@ -97,6 +98,7 @@ class Arbitrary(Site): if status: break return True + process_content_url(content_url) if not story: