fix: suppress S104 ruff lint warning in SSRF test

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2026-05-18 00:58:01 +00:00
parent b4bc026c77
commit aae1ccbef4

View File

@@ -25,7 +25,7 @@ class TestIsPrivateOrReserved:
"192.168.0.1",
"192.168.1.100",
"169.254.169.254", # AWS metadata
"0.0.0.0",
"0.0.0.0", # noqa: S104
],
)
def test_private_ipv4_addresses_blocked(self, ip):