Skip to content

Commit

Permalink
DOCS: Fix blocking doc-build warnings (#5057)
Browse files Browse the repository at this point in the history
Co-authored-by: Samuel Lopez <[email protected]>
  • Loading branch information
SMoraisAnsys and Samuelopez-ansys authored Aug 17, 2024
1 parent cbad1a0 commit f0b087a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion doc/source/release_1_0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ An example of migration is shown below:
from ansys.aedt.core.application.analysis_3d_layout import FieldAnalysis3DLayout
The following table list the name changes with the old and new pathes:
The following table list the name changes with the old and new paths:

+----------------------------------------------------------------+--------------------------------------------------------------------------+
| Old path without file rename | New path with renamed file |
Expand Down
1 change: 0 additions & 1 deletion src/ansys/aedt/core/modeler/cad/primitives_2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ def create_ellipse(
Additional keyword arguments to pass to set properties when creating the primitive.
For more information, see ``ansys.aedt.core.modeler.cad.object_3d.Object3d``.
Returns
-------
ansys.aedt.core.modeler.cad.object_3d.Object3d
Expand Down
18 changes: 9 additions & 9 deletions src/ansys/aedt/core/modeler/circuits/primitives_circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,14 @@ def __init__(self, modeler):
def get_wire_by_name(self, name):
"""Wire class by name.
Parameters
----------
name : str
Wire name.
Returns
-------
:class:`ansys.aedt.core.modeler.circuits.object_3d_circuit.Wire`
`
Parameters
----------
name : str
Wire name.
Returns
-------
:class:`ansys.aedt.core.modeler.circuits.object_3d_circuit.Wire`
"""
for _, w in self.wires.items():
if w.name == name:
Expand All @@ -113,6 +112,7 @@ def wires(self):
"""All schematic wires in the design.
Returns
-------
dict
Wires.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py
Original file line number Diff line number Diff line change
Expand Up @@ -1485,7 +1485,7 @@ def add_subcircuit_dynamic_link(
Parameters
----------
pyaedt_app : :class:`ansys.aedt.core.q3d.Q3d` or :class:`ansys.aedt.core.q3d.Q2d` or
:class:`ansys.aedt.core.q3d.Hfss`.
:class:`ansys.aedt.core.q3d.Hfss`.
pyaedt application object to include. It could be an Hfss object, a Q3d object or a Q2d.
solution_name : str, optional
Name of the solution and sweep. The default is ``"Setup1 : Sweep"``.
Expand Down

0 comments on commit f0b087a

Please sign in to comment.