sort dead locations

This commit is contained in:
Nemo 2024-06-24 13:10:07 +05:30
parent c2438a1321
commit c7eae7e2dd

View File

@ -33,7 +33,7 @@ def check_dead_location(commits, repo):
except KeyError:
pass
return all_locations - alive_locations
return sorted(list(all_locations - alive_locations))
# Main function to iterate through commits and identify dead locations
def main():