PyAPI: correct types in doc-strings

Ref !116245
This commit is contained in:
nutti
2024-10-09 14:29:58 +11:00
committed by Campbell Barton
parent 8d7c98a3c8
commit 933fb1978f
15 changed files with 25 additions and 25 deletions

View File

@@ -3406,7 +3406,7 @@ PyDoc_STRVAR(
" This object gives access to Vectors in Blender.\n"
"\n"
" :arg seq: Components of the vector, must be a sequence of at least two\n"
" :type seq: sequence of numbers\n");
" :type seq: sequence of floats\n");
PyTypeObject vector_Type = {
/*ob_base*/ PyVarObject_HEAD_INIT(nullptr, 0)
/*tp_name*/ "Vector",