mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-27 01:48:17 +00:00
fix style
This commit is contained in:
parent
45265cdcb7
commit
57f1dddc2f
@ -142,7 +142,7 @@ class TestMsgGetaddress(TrezorTest):
|
||||
node = btc.get_public_node(self.client, parse_path("44'/0'/%d'" % n))
|
||||
xpubs.append(node.xpub)
|
||||
for nr in range(1, 4):
|
||||
with pytest.raises(CallException) as exc:
|
||||
with pytest.raises(CallException):
|
||||
btc.get_address(
|
||||
self.client,
|
||||
"Bitcoin",
|
||||
@ -150,7 +150,7 @@ class TestMsgGetaddress(TrezorTest):
|
||||
show_display=(nr == 1),
|
||||
multisig=getmultisig(0, 0, xpubs=xpubs),
|
||||
)
|
||||
with pytest.raises(CallException) as exc:
|
||||
with pytest.raises(CallException):
|
||||
btc.get_address(
|
||||
self.client,
|
||||
"Bitcoin",
|
||||
|
@ -54,7 +54,6 @@ from trezorlib import messages as proto, stellar
|
||||
from trezorlib.tools import parse_path
|
||||
|
||||
from .common import TrezorTest
|
||||
from .conftest import TREZOR_VERSION
|
||||
|
||||
|
||||
@pytest.mark.stellar
|
||||
|
Loading…
Reference in New Issue
Block a user