ParameterInfo Source code in library_analyzer/processing/annotations/model/_annotations.py 328 329 330 331 332 333 334 335 336 337 338class 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 333 334 335 336 337 338def __init__( self, parameter_type: ParameterType, value: str = "", value_type: str = "" ) -> None: self.type = parameter_type self.value = value self.value_type = value_type