From dfc1e197eee9460734e2d366a8a329636230ae61 Mon Sep 17 00:00:00 2001 From: jvonrick Date: Fri, 5 Jan 2024 10:21:51 +0100 Subject: [PATCH] Fix codestyle issues --- examples/006_filter_composite_data_example.py | 4 ++-- examples/012_fatigue_example.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/006_filter_composite_data_example.py b/examples/006_filter_composite_data_example.py index 6061a531f..d637c1330 100644 --- a/examples/006_filter_composite_data_example.py +++ b/examples/006_filter_composite_data_example.py @@ -74,8 +74,8 @@ # It also supports selecting a specific spot (TOP, MID, BOT) directly. # This example selects the maximum value over all spots for each node and then requests # the elemental location that implies averaging over all nodes in an element. -# Using the :func:`.get_ply_wise_data` function has the advantage that all the averaging and filtering -# is done on the server side. +# Using the :func:`.get_ply_wise_data` function has the advantage that all the averaging and +# filtering is done on the server side. if version_equal_or_later(server, "8.0"): elemental_max = get_ply_wise_data( field=stress_field, diff --git a/examples/012_fatigue_example.py b/examples/012_fatigue_example.py index 1bac6d884..5c0d48ca2 100644 --- a/examples/012_fatigue_example.py +++ b/examples/012_fatigue_example.py @@ -15,7 +15,8 @@ by using a dummy S-N curve. Be aware that the fatpack package is not developed by Ansys, so it is the responsibility -of the user to verify that it works as expected. For more information, see the `fatback package `_, +of the user to verify that it works as expected. For more information, see the +`fatpack package `_, """