utils: Fix broken sorting of tileconn.json

Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
Tim 'mithro' Ansell 2020-02-10 11:07:56 -08:00
parent 21710d336f
commit 8b560d0d02
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ def sort(data):
key=lambda o: (extract_numbers(o[0]), extract_numbers(o[1])))
data.sort(key=lambda o: (o['tile_types'], o['grid_deltas']))
return data
else:
def key(o):