Skip to content

Commit

Permalink
Fix evaluator tentacles import
Browse files Browse the repository at this point in the history
  • Loading branch information
Herklos committed Feb 20, 2020
1 parent f52739c commit 98a39da
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions octobot_evaluators/evaluator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")

0 comments on commit 98a39da

Please sign in to comment.