Skip to content

Commit

Permalink
fix: updating class APDLCommands in commands.py
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie committed Oct 18, 2024
1 parent c6a3c48 commit 160b258
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
7 changes: 1 addition & 6 deletions doc/source/mapdl_commands/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,7 @@ These commands make up the ANSYS Parametric Design Language
:maxdepth: 1
:caption: APDL

apdl/parameter_definition
apdl/macro_files
apdl/abbreviations
apdl/array_parm
apdl/matrix_op
apdl/process_controls
apdl/index

.. _ref_prep_commands:

Expand Down
5 changes: 3 additions & 2 deletions src/ansys/mapdl/core/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,10 @@ class PreprocessorCommands(
class APDLCommands(
apdl.abbreviations.Abbreviations,
apdl.array_parameters.ArrayParameters,
apdl.encryption_decryption.EncryptionDecryption,
apdl.macro_files.MacroFiles,
apdl.matrix_op.MatrixOP,
apdl.parameter_definition.ParameterDefinition,
apdl.matrix_operations.MatrixOperations,
apdl.parameters.Parameters,
apdl.process_controls.ProcessControls,
):
pass
Expand Down

0 comments on commit 160b258

Please sign in to comment.