Skip to content

Commit 4a1291c

Browse files
committed
Formatting
1 parent 8e3548f commit 4a1291c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

arcade/sound.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ def __init__(self, file_name: Union[str, Path], streaming: bool = False):
3838
raise FileNotFoundError(f"The sound file '{file_name}' is not a file or can't be read.")
3939
self.file_name = str(file_name)
4040

41-
self.source: Source = media.load(
42-
self.file_name, streaming=streaming
43-
)
41+
self.source: Source = media.load(self.file_name, streaming=streaming)
4442

4543
if self.source.duration is None:
4644
raise ValueError(

0 commit comments

Comments
 (0)