Skip to content

Commit 82838e9

Browse files
refactor: moving information class to another module (#3491)
* refactor: moving information to another module * chore: adding changelog file 3491.added.md [dependabot-skip] --------- Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent a0fb521 commit 82838e9

File tree

8 files changed

+530
-478
lines changed

8 files changed

+530
-478
lines changed

doc/changelog.d/3491.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
refactor: moving information class to another module

doc/source/api/mapdl.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Constants
6767
``Information`` class attributes
6868
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6969

70-
.. currentmodule:: ansys.mapdl.core.misc
70+
.. currentmodule:: ansys.mapdl.core.information
7171

7272
.. autosummary::
7373
:toctree: _autosummary

src/ansys/mapdl/core/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,9 @@
126126
else:
127127
from ansys.mapdl.core.launcher import launch_mapdl
128128

129+
from ansys.mapdl.core.information import Information
129130
from ansys.mapdl.core.mapdl_grpc import MapdlGrpc as Mapdl
130-
from ansys.mapdl.core.misc import Information, Report, _check_has_ansys
131+
from ansys.mapdl.core.misc import Report, _check_has_ansys
131132
from ansys.mapdl.core.pool import MapdlPool
132133

133134
_HAS_ANSYS = _check_has_ansys()

0 commit comments

Comments
 (0)