Skip to content

Commit f2ebe0f

Browse files
committed
Revert "[python] more elaborate enum SHGShellOrdering values"
This reverts commit 8181991.
1 parent 1be3aca commit f2ebe0f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

python/src/libint2/libint2.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ std::vector<double> coeffs_normalized(const Shell &s) {
138138

139139
PYBIND11_MODULE(libint2, m) {
140140
py::enum_<SHGShellOrdering>(m, "SHGShellOrdering")
141-
.value("SHGShellOrdering_Standard", libint2::SHGShellOrdering_Standard)
142-
.value("SHGShellOrdering_Gaussian", libint2::SHGShellOrdering_Gaussian)
143-
.value("SHGShellOrdering_MOLDEN", libint2::SHGShellOrdering_Gaussian);
141+
.value("Standard", libint2::SHGShellOrdering_Standard)
142+
.value("Gaussian", libint2::SHGShellOrdering_Gaussian)
143+
.value("MOLDEN", libint2::SHGShellOrdering_Gaussian);
144144

145145
libint2::initialize();
146146

0 commit comments

Comments
 (0)