Skip to content

Commit

Permalink
the DVS class was missing (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariostieriansys committed May 22, 2024
1 parent f808d27 commit 6c32790
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions doc/source/class_documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ PyEnSight using the ``ansys.pyensight.core.Session.ensight`` interface.
ansys.pyensight.core.utils.views.Views
ansys.pyensight.core.utils.variables.Variables
ansys.pyensight.core.utils.omniverse.Omniverse
ansys.pyensight.core.utils.readers.Readers
ansys.pyensight.core.utils.readers.DVS
2 changes: 1 addition & 1 deletion src/ansys/pyensight/core/utils/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 6c32790

Please sign in to comment.