1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-05 12:00:58 +08:00

[fixed] lgtm issue : unused imported module of 'signal' and change to PEP8 style code imported module

This commit is contained in:
slowy07
2021-07-18 09:08:43 +07:00
committed by you-n-g
parent f8a2b0533b
commit 2023f714c9

View File

@@ -1,10 +1,14 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
import sys, traceback, signal, atexit, logging
import atexit
import logging
import sys
import traceback
from ..log import get_module_logger
from . import R
from .recorder import Recorder
from ..log import get_module_logger
logger = get_module_logger("workflow", logging.INFO)