Skip to content

Commit 91230d6

Browse files
authored
Order programs (#26)
1 parent ce6ca99 commit 91230d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

winterapi/fidelius.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def get_programs(self) -> list[Program]:
133133
134134
:return: List of programs.
135135
"""
136-
return list(self.credentials.programs)
136+
return sorted(list(self.credentials.programs))
137137

138138
def get_all_program_details(self) -> dict[str, Program]:
139139
"""

0 commit comments

Comments
 (0)