Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuelopez-ansys committed May 17, 2024
1 parent 728b62b commit 1483020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaedt/modeler/circuits/PrimitivesCircuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def get_wire_by_name(self, name):
:class:`pyaedt.modeler.circuits.object3dcircuit.Wire`
`
"""
for k, w in self.wires.items():
for _, w in self.wires.items():
if w.name == name:
return w
wname = w.name.split(";")[0].split("@")[0]
Expand Down

0 comments on commit 1483020

Please sign in to comment.