Skip to content

Commit

Permalink
Create circuit port between pin and reference layer (#2494)
Browse files Browse the repository at this point in the history
  • Loading branch information
svandenb-dev authored Feb 17, 2023
1 parent 81ae0c9 commit c3fe413
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pyaedt/edb_core/edb_data/simulation_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,7 @@ def cutout_subdesign_expansion(self):

@cutout_subdesign_expansion.setter
def cutout_subdesign_expansion(self, value): # pragma: no cover
if isinstance(value, (int, float)):
self._cutout_subdesign_expansion = value
self._cutout_subdesign_expansion = value

@property
def cutout_subdesign_round_corner(self):
Expand Down Expand Up @@ -2004,7 +2003,7 @@ def _read_cfg(self): # pragma: no cover
else:
print("Unprocessed value for CutoutSubdesignType '{0}'".format(value))
elif i.lower().startswith("cutoutsubdesignexpansion"):
self.cutout_subdesign_expansion = float(value)
self.cutout_subdesign_expansion = value
elif i.lower().startswith("cutoutsubdesignroundcorners"):
self.cutout_subdesign_round_corner = self._get_bool_value(value)
elif i.lower().startswith("sweepinterpolating"):
Expand Down

0 comments on commit c3fe413

Please sign in to comment.