Skip to content

Commit

Permalink
python3 fix map
Browse files Browse the repository at this point in the history
  • Loading branch information
seandepagnier committed Nov 27, 2019
1 parent 5952be5 commit c5c1749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signalk/client_wx.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

def round3(value):
if type(value) == type([]):
return map(round3, value)
return list(map(round3, value))
elif type(value) == type({}):
ret = {}
for each in value:
Expand Down

0 comments on commit c5c1749

Please sign in to comment.