forked from SilverStudioGames/WTS
Sort in-place to save time
This commit is contained in:
parent
9d61a4c583
commit
0d4a309898
@ -4,9 +4,9 @@ init python:
|
||||
item = sorted(item, key=lambda x: natsort_key(x.name))
|
||||
|
||||
if sortby == "Price (Asc)":
|
||||
item = sorted(item, key=lambda x: x.price, reverse=False)
|
||||
item.sort(key=lambda x: x.price, reverse=False)
|
||||
elif current_sorting == "Price (Desc)":
|
||||
item = sorted(item, key=lambda x: x.price, reverse=True)
|
||||
item.sort(key=lambda x: x.price, reverse=True)
|
||||
return item
|
||||
|
||||
label shop_item:
|
||||
|
Loading…
Reference in New Issue
Block a user