Return the list of all attributes under the given `name`, present in all of the nets used in this plan.
(self, name)
| 2924 | return self._steps |
| 2925 | |
| 2926 | def get_all_attributes(self, name): |
| 2927 | """ |
| 2928 | Return the list of all attributes under the given `name`, present in |
| 2929 | all of the nets used in this plan. |
| 2930 | """ |
| 2931 | return [ |
| 2932 | attr |
| 2933 | for net in self._net_dict.values() |
| 2934 | for attr in net.get_attributes(name) |
| 2935 | ] |
| 2936 | |
| 2937 | @classmethod |
| 2938 | def create_from_proto(cls, plan_proto): |
no test coverage detected