diff --git a/doc/changelog.d/6126.fixed.md b/doc/changelog.d/6126.fixed.md new file mode 100644 index 00000000000..6ac47efb26d --- /dev/null +++ b/doc/changelog.d/6126.fixed.md @@ -0,0 +1 @@ +fix small bug in time domain report \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index dba35c4993a..59c8f52126c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,7 +78,7 @@ dotnet = [ "pywin32>=303; platform_system=='Windows'", ] doc = [ - "ansys-sphinx-theme>=1.0.0,<1.4", + "ansys-sphinx-theme>=1.0.0,<1.5", "jupyter", "numpydoc>=1.5.0,<1.9", "recommonmark", diff --git a/src/ansys/aedt/core/visualization/post/compliance.py b/src/ansys/aedt/core/visualization/post/compliance.py index 2bebf2b0709..e4d4ae3557e 100644 --- a/src/ansys/aedt/core/visualization/post/compliance.py +++ b/src/ansys/aedt/core/visualization/post/compliance.py @@ -1143,7 +1143,7 @@ def _create_aedt_reports(self): if pass_fail and not pass_fail_criteria: if report_type in ["standard", "frequency", "time"]: pass_fail_criteria = local_config.get("limitLines", None) - elif report_type.contains("eye"): + elif "eye" in report_type: pass_fail_criteria = local_config.get("eye_mask", None) if group and report_type in ["standard", "frequency", "time"]: new_dict = {} diff --git a/src/ansys/aedt/core/visualization/report/standard.py b/src/ansys/aedt/core/visualization/report/standard.py index 1fb5a693166..28f5188dcba 100644 --- a/src/ansys/aedt/core/visualization/report/standard.py +++ b/src/ansys/aedt/core/visualization/report/standard.py @@ -445,12 +445,6 @@ def _context(self): "WE", False, self.time_stop, - "WM", - False, - self.time_stop, - "WN", - False, - self.time_start, "WS", False, self.time_start,