Skip to content

Commit

Permalink
MAINT: integrate pyaedt PR 3919 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Dec 22, 2023
1 parent b09dc04 commit 0bb3ebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyedb/legacy/edb_core/net_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def auto_identify_signal(self, resistor_below=10, inductor_below=1, capacitor_ab
>>> app.extended_nets.auto_identify_signal()
"""
return self._pedb.nets.generate_extended_nets(
resistor_below, inductor_below, capacitor_above, exception_list, True, False
resistor_below, inductor_below, capacitor_above, exception_list, True, True
)

@pyedb_function_handler()
Expand Down Expand Up @@ -228,7 +228,7 @@ def auto_identify_power(self, resistor_below=10, inductor_below=1, capacitor_abo
>>> app.extended_nets.auto_identify_power()
"""
return self._pedb.nets.generate_extended_nets(
resistor_below, inductor_below, capacitor_above, exception_list, False, True
resistor_below, inductor_below, capacitor_above, exception_list, True, True
)


Expand Down

0 comments on commit 0bb3ebd

Please sign in to comment.