From 589ac0787d82845623e0fb0189eb2ff8d6e1d35c Mon Sep 17 00:00:00 2001 From: Thomas Kunze Date: Thu, 17 Jan 2019 21:38:02 +0100 Subject: [PATCH] fix --- knxPython/knxmodule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/knxPython/knxmodule.cpp b/knxPython/knxmodule.cpp index a0a50ef..bc9281b 100644 --- a/knxPython/knxmodule.cpp +++ b/knxPython/knxmodule.cpp @@ -78,7 +78,7 @@ PYBIND11_MODULE(knx, m) m.def("Start", &Start, "Start knx handling thread."); m.def("ProgramMode", (bool(*)())&ProgramMode, "get programing mode active."); m.def("ProgramMode", (bool(*)(bool))&ProgramMode, "Activate / deactivate programing mode."); - m.def("Configured", (bool(*)())&Configured(), "get configured status."); + m.def("Configured", (bool(*)())&Configured, "get configured status."); m.def("RegisterGroupObjects", &RegisterGroupObjects); py::class_(m, "GroupObject", py::dynamic_attr())