Skip to content

Commit 2023f71

Browse files
slowy07you-n-g
authored andcommitted
[fixed] lgtm issue : unused imported module of 'signal' and change to PEP8 style code imported module
1 parent f8a2b05 commit 2023f71

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

qlib/workflow/utils.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Copyright (c) Microsoft Corporation.
22
# Licensed under the MIT License.
33

4-
import sys, traceback, signal, atexit, logging
4+
import atexit
5+
import logging
6+
import sys
7+
import traceback
8+
9+
from ..log import get_module_logger
510
from . import R
611
from .recorder import Recorder
7-
from ..log import get_module_logger
812

913
logger = get_module_logger("workflow", logging.INFO)
1014

0 commit comments

Comments
 (0)