mirror of
https://github.com/esphome/esphome.git
synced 2026-09-21 12:08:38 +00:00
Sort codeowners using case-insensitive (#10651)
Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
co-authored by
J. Nick Koston
parent
f5f84fe825
commit
59e62a1f44
@@ -82,7 +82,7 @@ for path in components_dir.iterdir():
|
||||
|
||||
|
||||
for path, owners in sorted(codeowners.items()):
|
||||
owners = sorted(set(owners))
|
||||
owners = sorted(set(owners), key=str.casefold)
|
||||
if not owners:
|
||||
continue
|
||||
for owner in owners:
|
||||
|
||||
Reference in New Issue
Block a user