OP-3021 - refactor CreateWriteRender as a base for other write creators

There are 3 creators which contained almost same code. CreateWriteRender was chosen as a base implementation, which other 2 could inherit and modify necessary parts
This commit is contained in:
Petr Kalis 2022-04-14 13:57:28 +02:00
parent 14fbabd477
commit 0b423fc6b5

View file

@ -17,7 +17,7 @@ class CreateWriteRender(plugin.OpenPypeCreator):
defaults = ["Main", "Mask"]
def __init__(self, *args, **kwargs):
super(CreateWriteRender, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)
data = OrderedDict()