Looking at the docstring, there are four parameters to the Tone().__init__() function but the function signature only specifies three. The parameter frequency is the one listed in the docstring that doesn't appear in the actual function signature.
I'm trying to track down the source of another bug where some frequencies aren't played correctly and this threw me off. (I'll write up another issue on that bug after doing a bit more hunting on my own)
Looking at the docstring, there are four parameters to the
Tone().__init__()function but the function signature only specifies three. The parameterfrequencyis the one listed in the docstring that doesn't appear in the actual function signature.I'm trying to track down the source of another bug where some frequencies aren't played correctly and this threw me off. (I'll write up another issue on that bug after doing a bit more hunting on my own)