Skip to content

Commit

Permalink
Fix bug in disjoint_nets method due to a regression in the net_name s…
Browse files Browse the repository at this point in the history
…etter
  • Loading branch information
maxcapodi78 authored and maxcapodi78 committed Nov 22, 2023
1 parent 629705e commit f3287dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyaedt/edb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2067,7 +2067,8 @@ def _create_cutout_multithread(
elif custom_extent:
_poly = custom_extent
else:
net_signals = [net.api_object for net in self.layout.nets if net.name in signal_list + nets_to_preserve]
nets_cutout = [i for i in nets_to_preserve if i not in reference_list]
net_signals = [net.api_object for net in self.layout.nets if net.name in signal_list + nets_cutout]
_poly = self._create_extent(
net_signals,
extent_type,
Expand Down

0 comments on commit f3287dc

Please sign in to comment.