Skip to content

Commit

Permalink
FIX: conversion to ASE atoms
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Nov 12, 2018
1 parent de657ba commit 766ad7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crystals/crystal.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def ase_atoms(self, **kwargs):
from ase import Atoms

return Atoms(
symbols=[atm.ase_atom(lattice=self) for atm in iter(self)],
symbols=[atm.ase_atom() for atm in iter(self)],
cell=np.array(self.lattice_vectors),
**kwargs
)
Expand Down

0 comments on commit 766ad7c

Please sign in to comment.