ben-chem-tools 0.3.0__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ben-chem-tools
3
- Version: 0.3.0
3
+ Version: 0.4.0
4
4
  Summary: common useful tools for computational chemistry
5
5
  Author: Ben
6
6
  Author-email: Ben <bennyp2494@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ben-chem-tools"
3
- version = "0.3.0"
3
+ version = "0.4.0"
4
4
  description = "common useful tools for computational chemistry"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -79,7 +79,7 @@ class xyz_molecule:
79
79
  def from_cclib_vals(cls,atom_nums,atom_coords):
80
80
  acc = []
81
81
  for atom_num,atom_coord in zip(atom_nums,atom_coords):
82
- acc.append(xyz_atom.from_cclib_vals(atom_num,atom_coords))
82
+ acc.append(xyz_atom.from_cclib_vals(atom_num,atom_coord))
83
83
  return cls(acc)
84
84
 
85
85
  @classmethod
File without changes