-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX: pin definition #467
FIX: pin definition #467
Conversation
@gkorompi I'm not sure to understand how this method does change anything. It feels like it's trying to find something, not changing anything right ? |
Co-authored-by: Sébastien Morais <[email protected]>
Co-authored-by: Sébastien Morais <[email protected]>
# Conflicts: # src/pyedb/dotnet/edb.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -2351,7 +2351,11 @@ def get_pin_from_component(self, component, netName=None, pinName=None): | |||
and (self.get_aedt_pin_name(p) in pinName or p.GetName() in pinName) | |||
] | |||
else: | |||
pins = [p for p in list(component.LayoutObjs) if int(p.GetObjType()) == 1 and p.IsLayoutPin()] | |||
pins = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The returned object type is changed. This is not allowed, and it will break customer script. Please revert. Deprecationwarining is added to this method. This method will be removed in the future.
No description provided.