We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e2c1f9 commit a1bbbf0Copy full SHA for a1bbbf0
1 file changed
pathways/utils.py
@@ -44,6 +44,8 @@ def read_indices_csv(file_path: Path) -> dict[tuple[str, str, str, str], int]:
44
with open(file_path, encoding="utf-8") as read_obj:
45
csv_reader = csv.reader(read_obj, delimiter=";")
46
for row in csv_reader:
47
+ if row[4] == "index":
48
+ continue
49
try:
50
indices[(row[0], row[1], row[2], row[3])] = int(row[4])
51
except IndexError as err:
0 commit comments