Skip to content

Commit

Permalink
Too many positional arguments for method call. (#958)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxJPRey authored Jan 3, 2025
1 parent 0ee121c commit 75f51e6
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 75f51e6

Please sign in to comment.