From 09f50c830f23f696f08eebac429c38405fc2f446 Mon Sep 17 00:00:00 2001 From: Ivan Maslov Date: Fri, 9 Apr 2021 11:57:29 +0300 Subject: [PATCH] Fix in Agent --- Agent/AgentSettings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Agent/AgentSettings.py b/Agent/AgentSettings.py index 09d30848..bf971d02 100644 --- a/Agent/AgentSettings.py +++ b/Agent/AgentSettings.py @@ -6,7 +6,7 @@ lPyOpenRPASourceFolderPathStr = r"..\Sources" # Path for test pyOpenRPA package # Operations if lPyOpenRPASourceFolderPathStr != "": sys.path.insert(0,os.path.abspath(os.path.join(lPyOpenRPASourceFolderPathStr))) # Path for test pyOpenRPA package -from pyOpenRPA.Agent import Agent +from pyOpenRPA.Agent import __Agent__ if __name__ == "__main__": # New init way gSettings = { @@ -66,5 +66,5 @@ if __name__ == "__main__": # New init way lL.addHandler(handler) ############################################ # Call the orchestrator def - Agent.Agent(inGSettings=gSettings) + __Agent__.Agent(inGSettings=gSettings)