Skip to content

Commit

Permalink
losslessfuncs: use set instead of list for lossless file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Mar 18, 2024
1 parent af364c7 commit c342fd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/losslessfuncs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
PLUGIN_LICENSE_URL = "https://www.gnu.org/licenses/gpl-2.0.html"


LOSSLESS_EXTENSIONS = ['flac', 'oggflac', 'ape', 'ofr', 'tak', 'wv', 'tta',
'aiff', 'aif', 'wav']
LOSSLESS_EXTENSIONS = {'flac', 'oggflac', 'ape', 'ofr', 'tak', 'wv', 'tta',
'aiff', 'aif', 'wav'}

from picard.script import register_script_function

Expand Down

0 comments on commit c342fd3

Please sign in to comment.