Alphabetising of code owner names is not as accurate as it could be as it is using the str.lower function.
By changing this to str.casefold it more aggressively converts characters to lowercase. For testing purposes I have used the German letter representing ss which is ß.
Alphabetising of code owner names is not as accurate as it could be as it is using the
str.lower
function.By changing this to
str.casefold
it more aggressively converts characters to lowercase. For testing purposes I have used the German letter representingss
which isß
.