| 135 | print("Warning: property {} of component {}:{} appears to reference a data memory level but could not be interpreted as reading or writing.".format(property_name, section.name, section.type)) |
| 136 | return False |
| 137 | def get_levels(property_value: str) -> List[str]: |
| 138 | if isinstance(property_value, str): |
| 139 | return [property_value] |
| 140 | elif isinstance(property_value, list): |
| 141 | return property_value |
| 142 | |
| 143 | components = [(section.name, section.type) for section in sections.values() if section.type != "cComponentManager"] |
| 144 | levels = set() |