Skip to content

Commit

Permalink
xmr: serializer flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ph4r05 committed Oct 3, 2018
1 parent 9d4df17 commit 471213b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/monero/xmr/serialize/xmrserialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ def _load_message_field(self, field):
Loads message field from the reader. Field is defined by the message field specification.
Returns loaded value, supports field reference.
"""
fname, ftype, params = field[0], field[1], field[2:]
return self.load_field(ftype, params, None)
ftype, params = field[1], field[2:]
return self.load_field(ftype, params)

def _dump_message(self, msg, msg_type=None):
"""
Expand Down

0 comments on commit 471213b

Please sign in to comment.