Skip to content

Commit 6dc02fb

Browse files
committed
Merge branch 'F932911' of https://github.com/ansys/pyaedt into F932911
2 parents 93cdf48 + 1ca0c8b commit 6dc02fb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/ansys/aedt/core/emit_core/nodes/generated/filter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ def notes(self, value: str):
8383

8484
class TypeOption(Enum):
8585
BY_FILE = "By File"
86-
LOW_PASS = "Low Pass" # nosec
87-
HIGH_PASS = "High Pass" # nosec
88-
BAND_PASS = "Band Pass" # nosec
86+
LOW_PASS = "Low Pass" # nosec
87+
HIGH_PASS = "High Pass" # nosec
88+
BAND_PASS = "Band Pass" # nosec
8989
BAND_STOP = "Band Stop"
9090
TUNABLE_BANDPASS = "Tunable Bandpass"
9191
TUNABLE_BANDSTOP = "Tunable Bandstop"

src/ansys/aedt/core/emit_core/nodes/generated/multiplexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def notes(self, value: str):
8686
self._set_property("Notes", f"{value}")
8787

8888
class TypeOption(Enum):
89-
BY_PASS_BAND = "By Pass Band" # nosec
89+
BY_PASS_BAND = "By Pass Band" # nosec
9090
BY_FILE = "By File"
9191

9292
@property

src/ansys/aedt/core/emit_core/nodes/generated/multiplexer_band.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ def delete(self):
5252

5353
class TypeOption(Enum):
5454
BY_FILE = "By File"
55-
LOW_PASS = "Low Pass" # nosec
56-
HIGH_PASS = "High Pass" # nosec
57-
BAND_PASS = "Band Pass" # nosec
55+
LOW_PASS = "Low Pass" # nosec
56+
HIGH_PASS = "High Pass" # nosec
57+
BAND_PASS = "Band Pass" # nosec
5858

5959
@property
6060
def type(self) -> TypeOption:

tests/system/solvers/test_26_emit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ def test_nodes_from_top_level(nodes, nodes_tested, results, results_of_get_props
15981598
try:
15991599
node._add_child_node(child_type)
16001600
except Exception as e:
1601-
exception = e
1601+
exception = e
16021602
except Exception as e:
16031603
exception = e
16041604

0 commit comments

Comments
 (0)