Skip to content

Commit

Permalink
update gc_pcsaft
Browse files Browse the repository at this point in the history
  • Loading branch information
prehner committed Oct 11, 2023
1 parent 4f8959a commit bdefc63
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/gc_pcsaft/python/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ use crate::association::PyAssociationRecord;
use feos_core::parameter::{
BinaryRecord, IdentifierOption, ParameterError, ParameterHetero, SegmentRecord,
};
use feos_core::python::parameter::{PyBinarySegmentRecord, PyChemicalRecord, PyIdentifier};
use feos_core::python::parameter::{
PyBinarySegmentRecord, PyChemicalRecord, PyIdentifier, PySmartsRecord,
};
use feos_core::{impl_json_handling, impl_parameter_from_segments, impl_segment_record};
#[cfg(feature = "dft")]
use numpy::{PyArray2, ToPyArray};
Expand Down Expand Up @@ -149,6 +151,7 @@ pub fn gc_pcsaft(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
m.add_class::<PyIdentifier>()?;
m.add_class::<IdentifierOption>()?;
m.add_class::<PyChemicalRecord>()?;
m.add_class::<PySmartsRecord>()?;
m.add_class::<PyAssociationRecord>()?;

m.add_class::<PyGcPcSaftRecord>()?;
Expand Down

0 comments on commit bdefc63

Please sign in to comment.