Skip to content

Commit

Permalink
Update pyaedt/modules/solutions.py
Browse files Browse the repository at this point in the history
Co-authored-by: Sébastien Morais <[email protected]>
  • Loading branch information
lorenzovecchietti and SMoraisAnsys committed Aug 12, 2024
1 parent 2054cb8 commit 2338dc0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyaedt/modules/solutions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1836,8 +1836,7 @@ def get_points_value(self, points, filename=None, visibility=False): # pragma:

# Clean inputs
if isinstance(points, dict):
points_name = list(points.keys())
points_value = [points[pt_name] for pt_name in points_name]
points_name, points_value = list(points.keys()), list(points.values())
elif isinstance(points, list):
points_name = None
if not isinstance(points[0], list):
Expand Down

0 comments on commit 2338dc0

Please sign in to comment.