1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-10 23:32:23 +01:00

Sort codeowners using case-insensitive (#10651)

Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
Jesse Hills
2025-09-09 14:26:22 +12:00
committed by GitHub
parent f5f84fe825
commit 59e62a1f44
2 changed files with 14 additions and 14 deletions

View File

@@ -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: