From a696e13ada74f8f7cfe03129f789f12c42a2af32 Mon Sep 17 00:00:00 2001 From: Tom Burrows Date: Mon, 4 May 2020 17:59:57 +0100 Subject: [PATCH] Black fix --- moviepy/audio/io/readers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moviepy/audio/io/readers.py b/moviepy/audio/io/readers.py index 4a8ced936..58042a8df 100644 --- a/moviepy/audio/io/readers.py +++ b/moviepy/audio/io/readers.py @@ -134,7 +134,7 @@ def read_chunk(self, chunksize): (int(len(result) / self.nchannels), self.nchannels) ) - # Pad the read chunk with zeros when there isn't enough audio + # Pad the read chunk with zeros when there isn't enough audio # left to read, so the buffer is always at full length. pad = np.zeros((chunksize - len(result), self.nchannels), dtype=result.dtype) result = np.concatenate([result, pad])