From 6d555ac2a7d4884a444bbd3ab252c3ca56ff4803 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Sat, 14 Dec 2024 15:36:02 +1100 Subject: [PATCH] PyDoc: typing fix for Vector.to_tuple Ref: !131855 --- source/blender/python/mathutils/mathutils_Vector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/mathutils/mathutils_Vector.cc b/source/blender/python/mathutils/mathutils_Vector.cc index 0680ffaa2dc..38e9da474d5 100644 --- a/source/blender/python/mathutils/mathutils_Vector.cc +++ b/source/blender/python/mathutils/mathutils_Vector.cc @@ -764,7 +764,7 @@ PyDoc_STRVAR( " :arg precision: The number to round the value to in [-1, 21].\n" " :type precision: int\n" " :return: the values of the vector rounded by *precision*\n" - " :rtype: tuple[float]\n"); + " :rtype: tuple[float, ...]\n"); static PyObject *Vector_to_tuple(VectorObject *self, PyObject *args) { int ndigits = 0;