From a089d836fbdef0cdd8ddac98f190802c3f95bab1 Mon Sep 17 00:00:00 2001 From: AumJavalgikar <99173843+AumJavalgikar@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:58:17 +0530 Subject: [PATCH] Update nextpy/ai/agent/base_agent.py - fixed case Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- nextpy/ai/agent/base_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextpy/ai/agent/base_agent.py b/nextpy/ai/agent/base_agent.py index 955936a3..c68cae30 100644 --- a/nextpy/ai/agent/base_agent.py +++ b/nextpy/ai/agent/base_agent.py @@ -32,7 +32,7 @@ class AgentState(Enum): IDLE = 0 BUSY = 1 - USED_AS_skill = 2 + USED_AS_SKILL = 2 ERROR = 3