From 6c1f961d8349058da2102f8a5564932bc8f82583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Tue, 14 Jul 2020 13:33:48 +0200 Subject: [PATCH] Add missing arg names for GuessedString constructor. --- src/runner/pythonrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index 011fc04..0c6b1f6 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -558,7 +558,7 @@ BOOST_PYTHON_MODULE(mobase) bpy::class_, boost::noncopyable>("GuessedString") .def(bpy::init<>()) - .def(bpy::init()) + .def(bpy::init((bpy::arg("value"), "quality"))) .def("update", static_cast& (GuessedValue::*)(const QString&)>(&GuessedValue::update), bpy::return_self<>(), bpy::arg("value"))