fix(): Fixes tag returning list of image objects deserialized

This commit is contained in:
Elia el Lazkani 2023-06-03 22:06:56 +02:00
parent d8e7035369
commit 502750732c

View file

@ -85,4 +85,6 @@ class Tag:
"""
Method to serialize tag object.
"""
return self.__dict__
tags = self.__dict__
tags['images'] = self.images.serialize()
return tags