Respect maximum 79 char line length

This commit is contained in:
Fabian Schilling 2021-11-02 22:15:04 +01:00
parent caa2b4219d
commit 5cc4a207b6

View File

@ -334,7 +334,7 @@ class Filter:
for item in results_all: for item in results_all:
urls = item.find('a')['href'].split('&imgrefurl=') urls = item.find('a')['href'].split('&imgrefurl=')
# Skip cases in which `urls` is not a two-element list of `[img_url, web_page]` # Skip urls that are not two-element lists
if len(urls) != 2: if len(urls) != 2:
continue continue