Process results sorted

This commit is contained in:
2021-12-19 18:39:02 +01:00
parent 10730314f5
commit 0be0a3ebf0
2 changed files with 3 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ class Files:
for result_file in files_list:
if result_file.startswith(prefix) and result_file.endswith(suffix):
result.append(result_file)
return result
return sorted(result)
class Symbols: