The code to create relationships was designed to handle `None` in from or to, but the `to_list()` function did not propagate the value for that to work and instead raised a TypeError
Signed-off-by: Joshua Watt <[email protected]> --- meta/lib/oe/sbom30.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/lib/oe/sbom30.py b/meta/lib/oe/sbom30.py index 0926266295..28778651d5 100644 --- a/meta/lib/oe/sbom30.py +++ b/meta/lib/oe/sbom30.py @@ -180,6 +180,9 @@ def hash_id(_id): def to_list(l): + if l is None: + return None + if isinstance(l, set): l = sorted(list(l)) -- 2.54.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#241017): https://lists.openembedded.org/g/openembedded-core/message/241017 Mute This Topic: https://lists.openembedded.org/mt/120285176/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
