further working on getting rid of hyperopt

This commit is contained in:
Gert Wohlgemuth 2018-05-24 00:05:34 -07:00
parent d4250222f8
commit b478ad76b2

View File

@ -179,7 +179,11 @@ def __evaluate(data):
# comment out hyper opt references, they are no supported here
# due to lambda size limitations
strategy = "\n".join(list(map(lambda x: "#{}".format(x) if "hyperopt" in x else x, strategy.split("\n"))))
strategy = "\n".join(
list(
map(
lambda x: "#{} # this version does not support hyperopt!".format(x) if "hyperopt" in x else x,
strategy.split("\n"))))
# print("loaded strategy")
# print(strategy)