Skip to content

Commit bb2aa39

Browse files
committed
small readStatistics update
1 parent c681f94 commit bb2aa39

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/pyscipopt/scip.pxi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11870,6 +11870,9 @@ def readStatistics(filename):
1187011870

1187111871
seen_cons = 0
1187211872
for i, line in enumerate(data):
11873+
if line == "\n":
11874+
continue
11875+
1187311876
split_line = line.split(":")
1187411877
split_line[1] = split_line[1][:-1] # removing \n
1187511878
stat_name = split_line[0].strip()

0 commit comments

Comments
 (0)