Skip to content
Snippets Groups Projects
Commit 611f83a1 authored by Gerardo Tauriello's avatar Gerardo Tauriello
Browse files

Fixed parentheses in python exports.

parent 73b49221
No related branches found
No related tags found
No related merge requests found
...@@ -30,15 +30,14 @@ void export_diag() { ...@@ -30,15 +30,14 @@ void export_diag() {
enum_<DiagType>("DiagType") enum_<DiagType>("DiagType")
.value("DIAG_UNK_ATOM", DIAG_UNK_ATOM) .value("DIAG_UNK_ATOM", DIAG_UNK_ATOM)
.value("DIAG_UNK_RESIDUE", DIAG_UNK_RESIDUE) .value("DIAG_UNK_RESIDUE", DIAG_UNK_RESIDUE)
.value("(DIAG_MISSING_ATOM", DIAG_MISSING_ATOM) .value("DIAG_MISSING_ATOM", DIAG_MISSING_ATOM)
.value("DIAG_NONSTD_RESIDUE", DIAG_NONSTD_RESIDUE) .value("DIAG_NONSTD_RESIDUE", DIAG_NONSTD_RESIDUE)
.export_values() .export_values()
; ;
class_<Diag>("Diag", init<DiagType,const char*>()) class_<Diag>("Diag", init<DiagType,const char*>())
.def("__str__(self)__", &Diag::Format) .def("Format", &Diag::Format, arg("colored")=true)
; ;
class_<Diagnostics, DiagnosticsPtr>("Diagnostics") class_<Diagnostics, DiagnosticsPtr>("Diagnostics")
; ;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment