From 5dd3f4ad6d0ab7a36c471c8628a3747ad5082406 Mon Sep 17 00:00:00 2001 From: binary-husky Date: Mon, 23 Oct 2023 21:50:47 +0800 Subject: [PATCH] rename --- crazy_functions/agent_fns/auto_agent.py | 2 +- crazy_functions/agent_fns/{autogen_general.py => general.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename crazy_functions/agent_fns/{autogen_general.py => general.py} (100%) diff --git a/crazy_functions/agent_fns/auto_agent.py b/crazy_functions/agent_fns/auto_agent.py index 5e67115..16ca295 100644 --- a/crazy_functions/agent_fns/auto_agent.py +++ b/crazy_functions/agent_fns/auto_agent.py @@ -1,7 +1,7 @@ from toolbox import CatchException, update_ui, gen_time_str, trimmed_format_exc, ProxyNetworkActivate from toolbox import report_execption, get_log_folder, update_ui_lastest_msg, Singleton from crazy_functions.agent_fns.pipe import PluginMultiprocessManager, PipeCom -from crazy_functions.agent_fns.autogen_general import AutoGenGeneral +from crazy_functions.agent_fns.general import AutoGenGeneral import time diff --git a/crazy_functions/agent_fns/autogen_general.py b/crazy_functions/agent_fns/general.py similarity index 100% rename from crazy_functions/agent_fns/autogen_general.py rename to crazy_functions/agent_fns/general.py