You can remove this sorted() now I guess.
sorted()
You need to move the list() to the outside of this again, so it is
list()
list(sorted(enumerate_apps(), ...))
Otherwise the code in L95 will not work correctly.
You can remove this
sorted()
now I guess.