Skip to content

depth_average_rule_data

Module for (multiple) DepthAverageRule class

!!! classes (multiple) DepthAverageRuleData

DepthAverageRuleData (IDepthAverageRuleData, RuleData)

Class for storing data related to depth average rule

Source code in entities/depth_average_rule_data.py
class DepthAverageRuleData(IDepthAverageRuleData, RuleData):
    """Class for storing data related to depth average rule"""

    def __init__(
        self,
        name: str,
        input_variables: List[str],
    ):
        super().__init__(name)
        self._input_variables = input_variables

    @property
    def input_variables(self) -> List[str]:
        """List with input variables"""
        return self._input_variables

input_variables: List[str] property readonly

List with input variables