Skip to content

Commit 40d15a6

Browse files
authored
Merge pull request #46 from pnnl/patch
Fix cosmo.xyz parsing error
2 parents e332934 + 78597d7 commit 40d15a6

File tree

2 files changed

+318
-210
lines changed

2 files changed

+318
-210
lines changed

isicle/parse.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,8 @@ def _parse_shielding(self):
398398
shield_idxs = []
399399
shield_atoms = []
400400
shields = []
401-
401+
collect_idx = False
402+
402403
for line in self.data["out"].split("\n"):
403404
if " SHIELDING" in line:
404405
shield_idxs = [int(x) for x in line.split()[2:]]

0 commit comments

Comments
 (0)