diff --git a/octobot_evaluators/evaluator/__init__.py b/octobot_evaluators/evaluator/__init__.py index c46471f2..fd6f5b69 100644 --- a/octobot_evaluators/evaluator/__init__.py +++ b/octobot_evaluators/evaluator/__init__.py @@ -13,9 +13,18 @@ # # You should have received a copy of the GNU Lesser General Public # License along with this library. +from octobot_commons.logging.logging_util import get_logger from .abstract_evaluator import * from .realtime_evaluator import * from .social_evaluator import * from .strategy_evaluator import * from .TA_evaluator import * + +try: + from tentacles.Evaluator.RealTime import * + from tentacles.Evaluator.Social import * + from tentacles.Evaluator.Strategies import * + from tentacles.Evaluator.TA import * +except ModuleNotFoundError as e: + get_logger("Evaluator").error(f"tentacles folder not found raised a ModuleNotFoundError exception : {e}")