Compare commits

..

No commits in common. "a16d176f5b8b52aff28561044fdff83843371fc3" and "968e36f35b328ad95cb1bce538d8e2465635e1de" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View File

@ -9,7 +9,7 @@ httpx==0.27.0
idna==3.7
lxml==5.2.1
python-dateutil==2.9.0.post0
requests==2.32.0
requests==2.28.1
ruff==0.3.5
six==1.16.0
sniffio==1.3.1

View File

@ -20,9 +20,7 @@ def exclude_list(domain: str) -> bool:
def is_pure_ip(domain: str) -> bool:
if isinstance(domain, str):
return True if re.match(IP_PATTERN, domain) else False
return True
return True if re.match(IP_PATTERN, domain) else False
def main():