Skip to content

Commit 426968a

Browse files
committed
lint
1 parent a0ceebe commit 426968a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/torchcodec/decoders/_blocks/_audio_converter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ def _wrap(self, data) -> AudioSamples:
8383
# immediately, they may be emitted with the next frame. Without this,
8484
# we'd fail the test_audio_converter_pts_is_contiguous() test.
8585
pts_seconds = (
86-
self._first_frame_pts_seconds + self._num_emitted_samples / self._out_sample_rate
86+
self._first_frame_pts_seconds
87+
+ self._num_emitted_samples / self._out_sample_rate
8788
)
8889
self._num_emitted_samples += data.shape[1]
8990
return AudioSamples(

0 commit comments

Comments
 (0)