Skip to content

Commit

Permalink
Merge branch 'master' into harmonize-hints
Browse files Browse the repository at this point in the history
  • Loading branch information
theo25 authored Apr 3, 2024
2 parents 6c4959d + 283b97b commit 972e21f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bindings/python/ast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ void bind_ast(py::module_ &m) {
py::arg("is_claim") = false)
.def_property_readonly("is_claim", &kore_axiom_declaration::is_claim)
.def("add_pattern", &kore_axiom_declaration::add_pattern)
.def_property_readonly("pattern", &kore_axiom_declaration::get_pattern);
.def_property_readonly("pattern", &kore_axiom_declaration::get_pattern)
.def_property_readonly("requires", &kore_axiom_declaration::get_requires);

py::class_<
kore_module_import_declaration,
Expand Down

0 comments on commit 972e21f

Please sign in to comment.