From 28e1350b01c168ced1dfd280b7b2f16c7e636e77 Mon Sep 17 00:00:00 2001 From: Lars Noack Date: Fri, 12 Apr 2024 14:34:25 +0200 Subject: [PATCH] fix: albums are now also contained in the child song collection album attributes --- development/objects_collection.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/development/objects_collection.py b/development/objects_collection.py index 170edb0..c12cb10 100644 --- a/development/objects_collection.py +++ b/development/objects_collection.py @@ -14,6 +14,12 @@ if __name__ == "__main__": Album(title="album", albumsort=123), ], ), + Song( + title="other_song", + album_list=[ + Album(title="album", albumsort=423), + ], + ), ] ), Album(title="album", barcode="1234567890123"),