We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8baaa39 commit f654ebcCopy full SHA for f654ebc
1 file changed
exatomic/molcas/output.py
@@ -272,7 +272,10 @@ def parse_atom(self):
272
if allatom.shape[0] > self.atom.shape[0]:
273
self.atom = allatom
274
self.meta['symmetrized'] = True
275
- self.atom['utag'] = _add_unique_tags(self.atom)
+ try:
276
+ self.atom['utag'] = _add_unique_tags(self.atom)
277
+ except ValueError:
278
+ pass
279
280
281
def parse_basis_set_order(self):
@@ -464,7 +467,10 @@ def parse_atom(self):
464
467
expand=True)
465
468
self.atom['tag'] = self.atom['tag'].str.strip()
466
469
self.atom['symop'] = self.atom['symop'].str.strip()
470
471
472
473
474
475
476
0 commit comments