1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-07 07:12:34 +00:00

flake8: fix complaints (for the last time, hopefully)

This commit is contained in:
matejcik 2018-08-10 15:24:21 +02:00
parent 6029a98414
commit ca608d0a98
8 changed files with 25 additions and 21 deletions

View File

@ -22,3 +22,5 @@ ignore =
E741, E741,
##### E266: too many leading '#' for block comment ##### E266: too many leading '#' for block comment
E266, E266,
# W503 line break before binary operator
W503,

View File

@ -22,6 +22,7 @@ from trezorlib.tools import parse_path
LISK_PATH = parse_path("m/44h/134h/0h/1h") LISK_PATH = parse_path("m/44h/134h/0h/1h")
@pytest.mark.lisk @pytest.mark.lisk
@pytest.mark.skip_t1 @pytest.mark.skip_t1
class TestMsgLiskGetaddress(TrezorTest): class TestMsgLiskGetaddress(TrezorTest):

View File

@ -23,6 +23,7 @@ from trezorlib.tools import parse_path
LISK_PATH = parse_path("m/44h/134h/0h/0h") LISK_PATH = parse_path("m/44h/134h/0h/0h")
@pytest.mark.lisk @pytest.mark.lisk
@pytest.mark.skip_t1 @pytest.mark.skip_t1
class TestMsgLiskGetPublicKey(TrezorTest): class TestMsgLiskGetPublicKey(TrezorTest):