mirror of
https://github.com/esphome/esphome.git
synced 2025-09-11 15:52:20 +01:00
Sort codeowners using case-insensitive (#10651)
Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
@@ -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