Skip to content

Commit

Permalink
[bugfix] Fix maxEnvelope/minEnvelope function names (backport #4859) (#…
Browse files Browse the repository at this point in the history
…4863)

[bugfix] Fix maxEnvelope/minEnvelope function names (#4859)

(cherry picked from commit a3322c6)

Co-authored-by: Hailin Wang <hailin.wang@connect.polyu.hk>
  • Loading branch information
mergify[bot] and haiiliin committed Aug 10, 2023
1 parent d8ca0a2 commit 9449b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/abaqus/Odb/OdbCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def isUpgradeRequiredForOdb(upgradeRequiredOdbPath: str):


@abaqus_function_doc
def maxEnvelop() -> Sequence[FieldOutput]:
def maxEnvelope() -> Sequence[FieldOutput]:
"""Retrieve the maximum value of an output variable over a number of fields.
Returns
Expand All @@ -72,7 +72,7 @@ def maxEnvelop() -> Sequence[FieldOutput]:


@abaqus_function_doc
def minEnvelop() -> Sequence[FieldOutput]:
def minEnvelope() -> Sequence[FieldOutput]:
"""Retrieve the minimum value of an output variable over a number of fields.
Returns
Expand Down

0 comments on commit 9449b6d

Please sign in to comment.