Skip to content

Commit

Permalink
FIX: code style
Browse files Browse the repository at this point in the history
  • Loading branch information
dunossauro committed Jan 3, 2024
1 parent 1fd99ec commit a610820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vmh/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ def _audio_chain(silences, distance):
return list(
chain.from_iterable(
[
(start / 1000) + threshold_distance[distance],
(stop / 1000) - threshold_distance[distance],
(start / 1_000) + threshold_distance[distance],
(stop / 1_000) - threshold_distance[distance],
]
for start, stop in silences
)
Expand Down

0 comments on commit a610820

Please sign in to comment.