[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-11-23 17:22:11 +00:00
parent ba356ca4b4
commit 0f3c63319d

View File

@ -51,25 +51,25 @@ def is_ip_v4_address_valid(ip: str) -> bool:
False
"""
parts = ip.split('.')
parts = ip.split(".")
if len(parts) != 4:
return False
for part in parts:
if not part:
return False
for i in range(len(part)):
if not part[i].isdigit():
return False
if part[0] == '0' and len(part) > 1:
if part[0] == "0" and len(part) > 1:
return False
if not (0 <= int(part) <= 255):
if not (0 <= int(part) <= 255):
return False
return True