summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-29 06:23:28 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-29 06:23:28 -0700
commitd71927fc791e51bf383b88bd3d943d8e3311ee8a (patch)
tree8c3c4c3da81a9b8756a3d9b6aa7fdc9f5f160ac5
parentfe4e5afebaf7320ba5bed7f159c84bc5d1e5faec (diff)
Rename bos to bob
-rw-r--r--ml_exp/compound.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ml_exp/compound.py b/ml_exp/compound.py
index 4dbd8c95c..98e31532f 100644
--- a/ml_exp/compound.py
+++ b/ml_exp/compound.py
@@ -46,7 +46,7 @@ class Compound:
self.cm = None
self.ljm = None
self.am = None
- self.bos = None
+ self.bob = None
if xyz is not None:
self.read_xyz(xyz)
@@ -122,7 +122,7 @@ class Compound:
Generate the Bag of Stuff for the compound.
size: compound size.
"""
- self.bos = bag_of_stuff(self.cm,
+ self.bob = bag_of_stuff(self.cm,
self.atoms,
size=size)