We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 204fa0a commit 0aef3beCopy full SHA for 0aef3be
plugins/python/src/modulewrap.cpp
@@ -580,9 +580,10 @@ static PyObject* parse_args(PyObject* args,
580
return nullptr;
581
}
582
// Missing annotation for this input label
583
- PyErr_Format(PyExc_TypeError,
584
- "Missing type annotation for parameter '%s' - all parameters must be annotated",
585
- label.c_str());
+ PyErr_Format(
+ PyExc_TypeError,
+ "Missing type annotation for parameter '%s' - all parameters must be annotated",
586
+ label.c_str());
587
Py_DECREF(annot);
588
589
0 commit comments