1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-17 09:24:34 +08:00

fix import

This commit is contained in:
bxdd
2020-12-10 09:54:05 +00:00
parent 729b57e4a7
commit 16450c2876
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ from ..utils import (
from ..log import get_module_logger from ..log import get_module_logger
from .base import Feature from .base import Feature
from .ops import * from .ops import Operators
class QlibCacheException(RuntimeError): class QlibCacheException(RuntimeError):

View File

@@ -20,7 +20,7 @@ from multiprocessing import Pool
from .cache import H from .cache import H
from ..config import C from ..config import C
from .ops import * from .ops import Operators
from ..log import get_module_logger from ..log import get_module_logger
from ..utils import parse_field, read_bin, hash_args, normalize_cache_fields from ..utils import parse_field, read_bin, hash_args, normalize_cache_fields
from .base import Feature from .base import Feature