Skip to content

Commit

Permalink
added missing Python records for binary parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
g-bauer committed Jun 14, 2024
1 parent 843739c commit 022c648
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pets/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ impl_parameter!(
pub fn pets(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<PyIdentifier>()?;
m.add_class::<IdentifierOption>()?;
m.add_class::<PyChemicalRecord>()?;

m.add_class::<PyPetsRecord>()?;
m.add_class::<PyPetsBinaryRecord>()?;
m.add_class::<PyPureRecord>()?;
m.add_class::<PyBinaryRecord>()?;
m.add_class::<PyPetsParameters>()?;
Expand Down
1 change: 1 addition & 0 deletions src/saftvrqmie/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ pub fn saftvrqmie(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<FeynmanHibbsOrder>()?;

m.add_class::<PySaftVRQMieRecord>()?;
m.add_class::<PySaftVRQMieBinaryRecord>()?;
m.add_class::<PyPureRecord>()?;
m.add_class::<PyBinaryRecord>()?;
m.add_class::<PySaftVRQMieParameters>()?;
Expand Down
2 changes: 1 addition & 1 deletion src/uvtheory/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ impl_parameter!(
pub fn uvtheory(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<PyIdentifier>()?;
m.add_class::<IdentifierOption>()?;
m.add_class::<PyChemicalRecord>()?;

m.add_class::<Perturbation>()?;
m.add_class::<PyUVTheoryRecord>()?;
m.add_class::<PyUVTheoryBinaryRecord>()?;
m.add_class::<PyPureRecord>()?;
m.add_class::<PyBinaryRecord>()?;
m.add_class::<PyUVTheoryParameters>()?;
Expand Down

0 comments on commit 022c648

Please sign in to comment.