api/_common: fix speaker file kwarg

In the implementation, the kwarg is called "file". Instead of fixing the implementation which is already released, we fix the docs.
This commit is contained in:
Laurens Valk
2020-07-07 09:50:36 +02:00
parent 82b16dc8de
commit 55c4c86c23
+2 -2
View File
@@ -328,11 +328,11 @@ class Speaker:
"""
pass
def play_file(self, file_name):
def play_file(self, file):
"""Plays a sound file.
Arguments:
file_name (str):
file (str):
Path to the sound file, including the file extension.
"""