Sirt in-place to save time

not the first time, so that we can still pass it iterators
This commit is contained in:
Gouvernathor 2023-11-14 22:55:53 +01:00
parent b21e179df0
commit 21cb97b2e2
1 changed files with 4 additions and 4 deletions

View File

@ -5,13 +5,13 @@ 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)
if sortby == "Lewdness (Asc)":
item = sorted(item, key=get_outfit_score, reverse=False)
item.sort(key=get_outfit_score, reverse=False)
elif current_sorting == "Lewdness (Desc)":
item = sorted(item, key=get_outfit_score, reverse=True)
item.sort(key=get_outfit_score, reverse=True)
return item
label shop_dress: