remove none returns from docstrings

This commit is contained in:
makaveli10
2023-09-15 13:30:35 +05:30
parent 3514b5f0dc
commit b617b03077
-9
View File
@@ -305,8 +305,6 @@ class ServeClient:
Args: Args:
frame_np (numpy.ndarray): The audio frame data as a NumPy array. frame_np (numpy.ndarray): The audio frame data as a NumPy array.
Returns:
None
""" """
if self.frames_np is not None and self.frames_np.shape[0] > 45*self.RATE: if self.frames_np is not None and self.frames_np.shape[0] > 45*self.RATE:
self.frames_offset += 30.0 self.frames_offset += 30.0
@@ -329,9 +327,6 @@ class ServeClient:
(no output from Whisper) are handled by showing the previous output for a set duration. A blank segment is added if (no output from Whisper) are handled by showing the previous output for a set duration. A blank segment is added if
there is no speech for a specified duration to indicate a pause. there is no speech for a specified duration to indicate a pause.
Returns:
None
Raises: Raises:
Exception: If there is an issue with audio processing or WebSocket communication. Exception: If there is an issue with audio processing or WebSocket communication.
@@ -521,8 +516,6 @@ class ServeClient:
This method sends a disconnect message to the client via the WebSocket connection to notify them This method sends a disconnect message to the client via the WebSocket connection to notify them
that the transcription service is disconnecting gracefully. that the transcription service is disconnecting gracefully.
Returns:
None
""" """
self.websocket.send( self.websocket.send(
json.dumps( json.dumps(
@@ -541,8 +534,6 @@ class ServeClient:
the exit flag to indicate the transcription thread should exit gracefully, and destroying resources the exit flag to indicate the transcription thread should exit gracefully, and destroying resources
associated with the transcription process. associated with the transcription process.
Returns:
None
""" """
logging.info("Cleaning up.") logging.info("Cleaning up.")
self.exit = True self.exit = True