Skip to content

Commit

Permalink
Fix codacy
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuelopez-ansys committed Nov 28, 2024
1 parent 0c41ec9 commit a1b45f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansys/aedt/core/workflows/hfss/choke_designer.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def update_config(cat, selected_option_u):
for key in config[cat]:
config[cat][key] = key == selected_option_u.get()

for option, value in options.items():
for option, _ in options.items():
btn = ttk.Radiobutton(
group_frame,
text=option,
Expand Down Expand Up @@ -368,7 +368,7 @@ def main(extension_args):
list_object = hfss.modeler.create_choke(str(json_path))

# Get core and winding objects
core = list_object[1]
_ = list_object[1]
first_winding_list = list_object[2]

# Get second winding list if it exists
Expand Down

0 comments on commit a1b45f3

Please sign in to comment.