mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-23 03:00:17 -04:00
Remove void in build_spinodal definition
This commit is contained in:
@@ -83,7 +83,7 @@ cdef class AbstractState:
|
||||
cpdef tuple criticality_contour_values(self)
|
||||
|
||||
## Spinodal curve(s)
|
||||
cpdef void build_spinodal(self) except *
|
||||
cpdef build_spinodal(self) except *
|
||||
cpdef PySpinodalData get_spinodal_data(self)
|
||||
|
||||
## Reducing point
|
||||
|
||||
@@ -173,7 +173,7 @@ cdef class AbstractState:
|
||||
self.thisptr.criticality_contour_values(L1star, M1star)
|
||||
return L1star, M1star
|
||||
|
||||
cpdef void build_spinodal(self) except *:
|
||||
cpdef build_spinodal(self) except *:
|
||||
""" Calculate the spinodal - wrapper of c++ function :cpapi:`CoolProp::AbstractState::build_spinodal` """
|
||||
self.thisptr.build_spinodal()
|
||||
cpdef PySpinodalData get_spinodal_data(self):
|
||||
|
||||
Reference in New Issue
Block a user