Skip to content

Commit

Permalink
fix (#3889)
Browse files Browse the repository at this point in the history
Co-authored-by: ring630 <@gmail.com>
  • Loading branch information
hui-zhou-a authored Nov 17, 2023
1 parent 67d35a8 commit d269917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaedt/edb_core/edb_data/nets_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def serial_rlc(self):
{
i: v
for i, v in self._app._nets[net].components.items()
if list(set(v.nets).intersection(nets)) != [net]
if list(set(v.nets).intersection(nets)) != [net] and v.type in ["Resistor", "Inductor", "Capacitor"]
}
)
return comps_common
Expand Down

0 comments on commit d269917

Please sign in to comment.