[TechDraw] Simplify return logic

Easy warmup
This commit is contained in:
Benjamin Bræstrup Sayoc
2023-04-09 18:31:06 +02:00
committed by WandererFan
parent 17b457a783
commit 6df0a20214
25 changed files with 53 additions and 106 deletions

View File

@@ -38,8 +38,7 @@ std::string DrawViewDimExtentPy::representation() const
PyObject* DrawViewDimExtentPy::tbd(PyObject* args)
{
(void) args;
PyObject *pyText = nullptr;
return pyText;
return nullptr;
}