mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-14 08:16:54 +08:00
Fix wrong error messages. (#946)
This commit is contained in:
@@ -339,17 +339,17 @@ class BaseRun(abc.ABC):
|
|||||||
@property
|
@property
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def collector_class_name(self):
|
def collector_class_name(self):
|
||||||
raise NotImplementedError("rewrite normalize_symbol")
|
raise NotImplementedError("rewrite collector_class_name")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def normalize_class_name(self):
|
def normalize_class_name(self):
|
||||||
raise NotImplementedError("rewrite normalize_symbol")
|
raise NotImplementedError("rewrite normalize_class_name")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def default_base_dir(self) -> [Path, str]:
|
def default_base_dir(self) -> [Path, str]:
|
||||||
raise NotImplementedError("rewrite normalize_symbol")
|
raise NotImplementedError("rewrite default_base_dir")
|
||||||
|
|
||||||
def download_data(
|
def download_data(
|
||||||
self,
|
self,
|
||||||
|
|||||||
Reference in New Issue
Block a user