Skip to content

Commit

Permalink
fix: inquire is now starinquire
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie committed Oct 18, 2024
1 parent 8fddefa commit 9883846
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ansys/mapdl/core/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ class PreprocessorCommands(
pass


class APDLCommands(
class Apdl(
apdl.abbreviations.Abbreviations,
apdl.array_parameters.ArrayParameters,
apdl.encryption_decryption.EncryptionDecryption,
Expand Down Expand Up @@ -489,7 +489,7 @@ class InqFunctions(inq_func.inq_function):


class Commands(
APDLCommands,
Apdl,
Aux2Commands,
Aux12Commands,
DatabaseCommands,
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/mapdl_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@ def cmplot(self, label: str = "", entity: str = "", keyword: str = "", **kwargs)
self.components.select(cmps_names)
return output

@wraps(_MapdlCore.inquire)
@wraps(_MapdlCore.starinquire)
def inquire(self, strarray="", func="", arg1="", arg2=""):
"""Wraps original INQUIRE function"""
func_options = [
Expand Down

0 comments on commit 9883846

Please sign in to comment.