1
0
Fork 0

[utils] traverse_obj: Allow unbranching using all and any (#9571)

Authored by: Grub4K
This commit is contained in:
Simon Sawicki 2024-03-30 19:54:43 +01:00 committed by GitHub
commit 3699eeb67c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 41 additions and 0 deletions

View file

@ -228,6 +228,15 @@ def traverse_obj(
if not casesense and isinstance(key, str):
key = key.casefold()
if key in (any, all):
has_branched = False
filtered_objs = (obj for obj in objs if obj not in (None, {}))
if key is any:
objs = (next(filtered_objs, None),)
else:
objs = (list(filtered_objs),)
continue
if __debug__ and callable(key):
# Verify function signature
inspect.signature(key).bind(None, None)