[docs]classOuterPin(OuterPinBase):''' This class extends the default OuterPin class '''@propertydefport(self):'''Return the port that the inner pin is a part of. This object cannot be modified directly by the end user.'''returnself._inner_pin._port@propertydefget_index(self):''' Returns python index of element As outer pins do not have port associated with it the index is copied from corrosponding innerpins '''innerpin=self.inner_pinreturninnerpin._bundle().get_index(innerpin)