Skip to content
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: _set_comp_prop() does not accept any argument. #958

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pyedb/dotnet/edb_core/cell/hierarchy/pin_pair_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def resistance(self):
@resistance.setter
def resistance(self, value):
self._pin_pair_rlc.R = value
self._set_comp_prop(self._pin_pair_rlc) # pragma: no cover
self._set_comp_prop() # pragma: no cover

@property
def inductance(self):
Expand All @@ -75,7 +75,7 @@ def inductance(self):
@inductance.setter
def inductance(self, value):
self._pin_pair_rlc.L = value
self._set_comp_prop(self._pin_pair_rlc) # pragma: no cover
self._set_comp_prop() # pragma: no cover

@property
def capacitance(self):
Expand All @@ -84,7 +84,7 @@ def capacitance(self):
@capacitance.setter
def capacitance(self, value):
self._pin_pair_rlc.C = value
self._set_comp_prop(self._pin_pair_rlc) # pragma: no cover
self._set_comp_prop() # pragma: no cover

@property
def rlc_values(self): # pragma: no cover
Expand Down
Loading