After recent changes, building a molecule by adding atoms as in
mol=Molecule()
### make it by hand
#mol.add_atom("C", 0,0,0)
fails:
File "run_votca.py", line 11, in <module>
mol.add_atom("C", 0,0,0)
File "/data/bbaumeie/PyVOTCA/PyVOTCA/molecule.py", line 18, in add_atom
self.elements.append(element)
AttributeError: 'NoneType' object has no attribute 'append'
After recent changes, building a
molecule
by adding atoms as infails: