mirror of https://gitlab.com/bashrc2/epicyon
Less indentation
parent
d4f47c329a
commit
baece9e606
11
content.py
11
content.py
|
@ -84,11 +84,12 @@ def valid_url_lengths(content: str, max_url_length: int) -> bool:
|
|||
if ctr == 0:
|
||||
ctr += 1
|
||||
continue
|
||||
if '"' in text:
|
||||
url = text.split('"')[0]
|
||||
if '<' not in url and '>' not in url:
|
||||
if len(url) > max_url_length:
|
||||
return False
|
||||
if '"' not in text:
|
||||
continue
|
||||
url = text.split('"')[0]
|
||||
if '<' not in url and '>' not in url:
|
||||
if len(url) > max_url_length:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue