Skip to content

Commit

Permalink
test #96 done
Browse files Browse the repository at this point in the history
  • Loading branch information
svandenb-dev committed Oct 30, 2024
1 parent 693cb6c commit 5fc8b76
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pyedb/grpc/edb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3073,7 +3073,11 @@ def hfss_setups(self):
Dict[str, :class:`legacy.edb_core.edb_data.hfss_simulation_setup_data.HfssSimulationSetup`]
"""
return {name: i for name, i in self.setups.items() if i.setup_type == "HFSS"}
setups = {}
for setup in self.active_cell.simulation_setups:
if setup.type.name == "HFSS":
setups[setup.name] = HfssSimulationSetup(self, setup)
return setups

@property
def siwave_dc_setups(self):
Expand Down

0 comments on commit 5fc8b76

Please sign in to comment.