From e8d16d6823bb389920fc29e9bb21f51f6270ac94 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 19 Oct 2023 14:41:20 +0900 Subject: [PATCH] Fix typo in exceptions.py occured -> occurred --- autogpts/autogpt/autogpt/agents/utils/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpts/autogpt/autogpt/agents/utils/exceptions.py b/autogpts/autogpt/autogpt/agents/utils/exceptions.py index efb85341..704922b0 100644 --- a/autogpts/autogpt/autogpt/agents/utils/exceptions.py +++ b/autogpts/autogpt/autogpt/agents/utils/exceptions.py @@ -37,7 +37,7 @@ class DuplicateOperationError(AgentException): class CommandExecutionError(AgentException): - """An error occured when trying to execute the command""" + """An error occurred when trying to execute the command""" class InvalidArgumentError(CommandExecutionError):