We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d14c4 commit 282b3d7Copy full SHA for 282b3d7
src/main.cpp
@@ -52,14 +52,12 @@ namespace libsemigroups {
52
)pbdoc")
53
.value("left", congruence_kind::left)
54
.value("right", congruence_kind::right)
55
- .value("twosided", congruence_kind::twosided)
56
- .export_values();
+ .value("twosided", congruence_kind::twosided);
57
58
py::enum_<tril>(m, "tril")
59
.value("true", tril::TRUE)
60
.value("false", tril::FALSE)
61
- .value("unknown", tril::unknown)
62
+ .value("unknown", tril::unknown);
63
64
py::class_<ReportGuard>(m,
65
"ReportGuard",
0 commit comments