From 60785e85434f1b286b20ff3dc0ef47fc8dbf4b60 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Wed, 23 Oct 2024 10:59:17 -0400 Subject: [PATCH] Update return type --- src/crewai/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/agent.py b/src/crewai/agent.py index 03daf643d..f68d6401b 100644 --- a/src/crewai/agent.py +++ b/src/crewai/agent.py @@ -419,7 +419,7 @@ class Agent(BaseAgent): return "\n".join(tool_strings) - def _validate_docker_installation(self): + def _validate_docker_installation(self) -> None: """Check if Docker is installed and running.""" if not shutil.which("docker"): raise RuntimeError(