Skip to content

Commit

Permalink
Black fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tburrows13 authored May 4, 2020
1 parent a1542a5 commit a696e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moviepy/audio/io/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit a696e13

Please sign in to comment.