1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-06-06 05:51:17 +08:00

Fix wrong error messages. (#946)

This commit is contained in:
Chia-hung Tai
2022-03-03 14:33:24 +08:00
committed by GitHub
parent ed0c238787
commit ea4fb33ff2

View File

@@ -339,17 +339,17 @@ class BaseRun(abc.ABC):
@property
@abc.abstractmethod
def collector_class_name(self):
raise NotImplementedError("rewrite normalize_symbol")
raise NotImplementedError("rewrite collector_class_name")
@property
@abc.abstractmethod
def normalize_class_name(self):
raise NotImplementedError("rewrite normalize_symbol")
raise NotImplementedError("rewrite normalize_class_name")
@property
@abc.abstractmethod
def default_base_dir(self) -> [Path, str]:
raise NotImplementedError("rewrite normalize_symbol")
raise NotImplementedError("rewrite default_base_dir")
def download_data(
self,