diff options
author | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-29 07:40:56 -0700 |
---|---|---|
committer | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-29 07:40:56 -0700 |
commit | 96df3d1b5e1de08d543991172f1fb1845b073018 (patch) | |
tree | 6a641aa783ef03d7b84eca962cac5d0aa5a89b33 | |
parent | 5bf923679707fd1603a6f73ca4d0ae8ec39e7858 (diff) |
Fix typo
-rw-r--r-- | ml_exp/compound.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ml_exp/compound.py b/ml_exp/compound.py index 26e393510..23c66ec27 100644 --- a/ml_exp/compound.py +++ b/ml_exp/compound.py @@ -111,13 +111,13 @@ class Compound: size: compund size. bohr_ru: if radius units should be in bohr's radius units. """ - hp = get_helping_data(self.coordinates, + hd = get_helping_data(self.coordinates, self.nc, self.atoms, size=size, bohr_ru=bohr_ru) - self.fnm, self.bonds, self.bonds_i, self.bonds_k, self.bonds_f = hp + self.fnm, self.bonds, self.bonds_i, self.bonds_k, self.bonds_f = hd def gen_am(self, use_forces=False, |