Skip to content

Commit 58552d2

Browse files
committed
Merge remote-tracking branch 'origin/zip' into zip
2 parents ef6fa1a + 1ec768a commit 58552d2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

structuretoolkit/analyse/pyscal.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,10 @@ def get_adaptive_cna_descriptors(
197197
if not ovito_compatibility:
198198
return cna
199199
else:
200-
return {o: cna[p] for o, p in zip(ovito_parameter, pyscal_parameter, strict=True)}
200+
return {
201+
o: cna[p]
202+
for o, p in zip(ovito_parameter, pyscal_parameter, strict=True)
203+
}
201204
else:
202205
cnalist = np.array(sys.atoms.structure)
203206
if mode == "numeric":

0 commit comments

Comments
 (0)