PyDoc: typing fix for Vector.to_tuple

Ref: !131855
This commit is contained in:
Andrej730
2024-12-14 15:36:02 +11:00
committed by Campbell Barton
parent bbc4cfba6a
commit 6d555ac2a7

View File

@@ -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;