Skip to content
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
1 change: 1 addition & 0 deletions doc/changelog.d/6231.documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix docstrings to comply with numpydoc style.
1 change: 1 addition & 0 deletions src/ansys/aedt/core/extensions/hfss/move_it.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@


def frontend(): # pragma: no cover
"""Create the GUI for the extension."""
import tkinter
import tkinter.ttk as ttk

Expand Down
2 changes: 1 addition & 1 deletion src/ansys/aedt/core/visualization/post/field_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# SOFTWARE.

"""
This module contains these classes: `FieldPlot`, `PostProcessor`, and `SolutionData`.
Defines these classes: `FieldPlot`, `PostProcessor`, and `SolutionData`.

This module provides all functionalities for creating and editing plots in the 3D tools.

Expand Down
4 changes: 3 additions & 1 deletion src/ansys/aedt/core/visualization/post/post_3dlayout.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ def _compute_power_loss(self, net_filter=None, layer_filter=None, solution=None)

@pyaedt_function_handler()
def compute_power_by_layer(self, layers=None, solution=None):
"""Computes the power by layer. This applies only to SIwave DC Analysis.
"""Compute the power by layer.

This applies only to SIwave DC Analysis.

Parameters
----------
Expand Down
3 changes: 1 addition & 2 deletions src/ansys/aedt/core/visualization/post/post_icepak.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,8 +409,7 @@ def get_temperature_extremum(
setup: Optional[str] = None,
time: Optional[str] = None,
) -> Tuple[Tuple[float, float, float], float]:
"""
Calculates the position and value of the temperature maximum or minimum.
"""Calculate the position and value of the temperature maximum or minimum.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/aedt/core/visualization/post/post_maxwell.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# SOFTWARE.

"""
This module contains the `PostProcessor3D` class.
Defines the `PostProcessor3D` class.

It contains all advanced postprocessing functionalities for creating and editing plots in the 3D tools.
"""
Expand Down