From 8ffe7e6ae109f324bcd6bdbaec77d3d983743c97 Mon Sep 17 00:00:00 2001 From: phantomsoldierking Date: Fri, 14 Mar 2025 21:45:18 +0100 Subject: [PATCH] Docs: changed description of the length parameter Fixes #134117 Pull Request: https://projects.blender.org/blender/blender/pulls/135958 --- extern/audaspace/bindings/python/PySound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/audaspace/bindings/python/PySound.cpp b/extern/audaspace/bindings/python/PySound.cpp index 4a598ea8bc5..a10f28e76cc 100644 --- a/extern/audaspace/bindings/python/PySound.cpp +++ b/extern/audaspace/bindings/python/PySound.cpp @@ -1923,7 +1923,7 @@ Sound_get_specs(Sound* self, void* nothing) } PyDoc_STRVAR(M_aud_Sound_length_doc, - "The sample specification of the sound as a tuple with rate and channel count."); + "The length attribute returns the duration of the sound in seconds."); static PyObject * Sound_get_length(Sound* self, void* nothing)