diff --git a/pyaedt/modules/solutions.py b/pyaedt/modules/solutions.py index 4c0f371f890..febf9358c44 100644 --- a/pyaedt/modules/solutions.py +++ b/pyaedt/modules/solutions.py @@ -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):