From aae1ccbef457f87d4d1fe2cd64a3489010932f97 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 00:58:01 +0000 Subject: [PATCH] fix: suppress S104 ruff lint warning in SSRF test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: João --- lib/crewai-files/tests/test_ssrf_protection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/crewai-files/tests/test_ssrf_protection.py b/lib/crewai-files/tests/test_ssrf_protection.py index 5fa066dae..8bb04a46e 100644 --- a/lib/crewai-files/tests/test_ssrf_protection.py +++ b/lib/crewai-files/tests/test_ssrf_protection.py @@ -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):