Skip to content

Commit 2345e18

Browse files
committed
enum.Enum
1 parent df29f7a commit 2345e18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Base/PODVector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void make_PODVector(py::module &m, std::string typestr)
152152

153153
void init_PODVector(py::module& m)
154154
{
155-
py::native_enum<GrowthStrategy>(m, "GrowthStrategy", "enum.IntEnum")
155+
py::native_enum<GrowthStrategy>(m, "GrowthStrategy", "enum.Enum")
156156
.value("Poisson", GrowthStrategy::Poisson)
157157
.value("Exact", GrowthStrategy::Exact)
158158
.value("Geometric", GrowthStrategy::Geometric)

0 commit comments

Comments
 (0)