Skip to content

Commit

Permalink
fixing call
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Jun 29, 2023
1 parent f03da97 commit f448437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansys/mapdl/core/common_grpc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Common gRPC functions"""
from typing import List, Literal
from typing import List, Literal, get_args

import numpy as np

Expand Down Expand Up @@ -45,7 +45,7 @@
"TLAB",
]

VGET_ENTITY_TYPES: List[str] = list(typing.get_args(VGET_ENTITY_TYPES_TYPING))
VGET_ENTITY_TYPES: List[str] = list(get_args(VGET_ENTITY_TYPES_TYPING))

STRESS_TYPES = ["X", "Y", "Z", "XY", "YZ", "XZ", "1", "2", "3", "INT", "EQV"]
COMP_TYPE = ["X", "Y", "Z", "SUM"]
Expand Down

0 comments on commit f448437

Please sign in to comment.