Skip to content

ParameterInfo

Source code in library_analyzer/processing/annotations/model/_annotations.py
class ParameterInfo:
    type: ParameterType
    value: str
    value_type: str

    def __init__(
        self, parameter_type: ParameterType, value: str = "", value_type: str = ""
    ) -> None:
        self.type = parameter_type
        self.value = value
        self.value_type = value_type

type = parameter_type instance-attribute

value = value instance-attribute

value_type = value_type instance-attribute

__init__(parameter_type, value='', value_type='')

Source code in library_analyzer/processing/annotations/model/_annotations.py
def __init__(
    self, parameter_type: ParameterType, value: str = "", value_type: str = ""
) -> None:
    self.type = parameter_type
    self.value = value
    self.value_type = value_type