Skip to content

Commit

Permalink
Fix missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bbye98 committed Aug 20, 2024
1 parent f1febba commit eb574d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/minim/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

if FOUND_FFMPEG:
from . import FFMPEG_CODECS
if (FOUND_PILLOW = find_spec("PIL") is not None):
if (FOUND_PILLOW := find_spec("PIL") is not None):
from PIL import Image

__all__ = ["Audio", "FLACAudio", "MP3Audio", "MP4Audio", "OggAudio", "WAVEAudio"]
Expand Down

0 comments on commit eb574d6

Please sign in to comment.