1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 03:30:02 +00:00

fix style

This commit is contained in:
Pavol Rusnak 2018-11-04 16:06:21 +01:00
parent b4e34b98fc
commit 1218a487f6
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -10,7 +10,9 @@ from .tools import expect
@expect(proto.MoneroAddress, field="address")
def get_address(client, n, show_display=False, network_type=0):
return client.call(
proto.MoneroGetAddress(address_n=n, show_display=show_display, network_type=network_type)
proto.MoneroGetAddress(
address_n=n, show_display=show_display, network_type=network_type
)
)