fix(): Fixes tag returning list of image objects deserialized
This commit is contained in:
parent
d8e7035369
commit
502750732c
1 changed files with 3 additions and 1 deletions
|
@ -85,4 +85,6 @@ class Tag:
|
|||
"""
|
||||
Method to serialize tag object.
|
||||
"""
|
||||
return self.__dict__
|
||||
tags = self.__dict__
|
||||
tags['images'] = self.images.serialize()
|
||||
return tags
|
||||
|
|
Loading…
Reference in a new issue