Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCS: Fix blocking doc-build warnings #5057

Merged
merged 2 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading