From f744a8269758b2c9a94a4e83ed6f74c888ca3108 Mon Sep 17 00:00:00 2001 From: Mario Ostieri <107915956+mariostieriansys@users.noreply.github.com> Date: Wed, 22 May 2024 13:34:50 +0100 Subject: [PATCH] the DVS class was missing (#375) --- doc/source/class_documentation.rst | 1 + src/ansys/pyensight/core/utils/readers.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/source/class_documentation.rst b/doc/source/class_documentation.rst index c9754123e5a..f5dd313515f 100644 --- a/doc/source/class_documentation.rst +++ b/doc/source/class_documentation.rst @@ -47,3 +47,4 @@ PyEnSight using the ``ansys.pyensight.core.Session.ensight`` interface. ansys.pyensight.core.utils.variables.Variables ansys.pyensight.core.utils.omniverse.Omniverse ansys.pyensight.core.utils.readers.Readers + ansys.pyensight.core.utils.readers.DVS diff --git a/src/ansys/pyensight/core/utils/readers.py b/src/ansys/pyensight/core/utils/readers.py index a8166ed9d4c..13a71e7a179 100644 --- a/src/ansys/pyensight/core/utils/readers.py +++ b/src/ansys/pyensight/core/utils/readers.py @@ -26,7 +26,7 @@ def __init__(self, interface: Union["ensight_api.ensight", "ensight"]): self._dvs = DVS(self._ensight) @property - def dvs(self): + def dvs(self) -> "DVS": return self._dvs