Meshroom/meshroom/processGraph/desc.py
Yann Lanthony 5bfb55ddd3 code formatting
* auto formatting based on pep8 recommendations
* """ for docstrings
2017-09-19 12:05:18 +02:00

40 lines
693 B
Python

class Attribute:
"""
"""
isOutput = False
uid = []
group = 'allParams'
commandLine = '{nodeType} --help' # need to be overridden
def __init__(self, **kwargs):
for k, v in kwargs.items():
setattr(self, k, v)
class FileAttribute(Attribute):
"""
"""
def __init__(self, **kwargs):
super(FileAttribute, self).__init__(**kwargs)
class ParamAttribute(Attribute):
"""
"""
def __init__(self, **kwargs):
super(ParamAttribute, self).__init__(**kwargs)
class Node:
"""
"""
internalFolder = '{nodeType}/{uid0}/'
def __init__(self):
pass
class CommandLineNode(Node):
"""
"""