1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-04 11:30:57 +08:00

debug on macos

This commit is contained in:
bxdd
2020-12-23 18:28:05 +00:00
parent cb3b6c5bde
commit d8f36df7f4

View File

@@ -1401,7 +1401,7 @@ class OpsWrapper(object):
def __getattr__(self, key):
if key not in self._ops:
raise AttributeError("The operator [{}] is not registered".format(key))
raise AttributeError("The operator [{0}] is not registered, and all dict is {1}".format(key, self._ops))
return self._ops[key]