conversion method for creator attributes

This commit is contained in:
iLLiCiTiT 2021-06-23 10:12:23 +02:00
parent 10b0cda6db
commit 17c1956b29

View file

@ -160,6 +160,20 @@ class BaseCreator:
"""
return []
def convert_family_attribute_values(self, attribute_values):
"""Convert values loaded from workfile metadata.
If passed values match current creator version just return the value
back. Update of changes in workfile must not happen in this method.
Args:
attribute_values(dict): Values from instance metadata.
Returns:
dict: Converted values.
"""
return attribute_values
class Creator(BaseCreator):
""""""