Skip to content

Commit 8f0b2b4

Browse files
committed
fixed Pylint E401
1 parent ecb3940 commit 8f0b2b4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/protocol.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# pylint: disable=too-many-boolean-expressions,too-many-return-statements
55
# pylint: disable=too-many-locals,too-many-statements
66
# pylint: disable=R0204
7+
# pylint: disable=
78

89
import base64
910
import hashlib
@@ -16,7 +17,9 @@
1617
from struct import Struct, pack, unpack
1718

1819
try:
19-
import defaults, highlevelcrypto, state
20+
import defaults
21+
import highlevelcrypto
22+
import state
2023
from addresses import (
2124
encodeVarint, decodeVarint, decodeAddress, varintDecodeError)
2225
from bmconfigparser import BMConfigParser
@@ -25,7 +28,9 @@
2528
from helper_sql import sqlExecute
2629
from version import softwareVersion
2730
except ImportError:
28-
from . import defaults, highlevelcrypto, state
31+
from . import defaults
32+
from . import highlevelcrypto
33+
from . import state
2934
from .addresses import (
3035
encodeVarint, decodeVarint, decodeAddress, varintDecodeError)
3136
from .bmconfigparser import BMConfigParser

0 commit comments

Comments
 (0)