From 2e12bc758fe254c1eeb2bc4af679d07aa475f802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CAnshu?= <“aychan04@terpmail.umd.edu> Date: Mon, 5 Aug 2024 20:25:26 -0400 Subject: [PATCH] Updated line 169 in projections_reader.py --- pipit/readers/projections_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipit/readers/projections_reader.py b/pipit/readers/projections_reader.py index 38153e8f..f8eee243 100644 --- a/pipit/readers/projections_reader.py +++ b/pipit/readers/projections_reader.py @@ -166,7 +166,7 @@ def read_sts_file(self): elif line_arr[0] == "CHARE": id = int(line_arr[1]) name = line_arr[2][1 : len(line_arr[2]) - 1] - dimensions = int(line_arr[3]) + dimensions = int(line_arr[-1]) self.chares[id] = (name, dimensions) # print(int(line_arr[1]), line_arr[2][1:len(line_arr[2]) - 1])