Replace lambda in script/gen_requirements_all.py with str.lower (#99665)
This commit is contained in:
parent
c64d173fcb
commit
a1359c1ce3
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ def gather_constraints() -> str:
|
|||
*gather_recursive_requirements("default_config"),
|
||||
*gather_recursive_requirements("mqtt"),
|
||||
},
|
||||
key=lambda name: name.lower(),
|
||||
key=str.lower,
|
||||
)
|
||||
+ [""]
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue