From 8df1d0532ab2f77cf7875faec538b1bb13d78ed2 Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Sun, 22 Mar 2026 14:03:37 -0300 Subject: [PATCH] Reorder VORBIS entries in AudioQuality enum --- votify/interface/enums.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/votify/interface/enums.py b/votify/interface/enums.py index a20840e..2e76e6c 100644 --- a/votify/interface/enums.py +++ b/votify/interface/enums.py @@ -48,9 +48,9 @@ class CoverSize(Enum): class AudioQuality(Enum): - VORBIS_HIGH = "vorbis-high" - VORBIS_MEDIUM = "vorbis-medium" VORBIS_LOW = "vorbis-low" + VORBIS_MEDIUM = "vorbis-medium" + VORBIS_HIGH = "vorbis-high" AAC_MEDIUM = "aac-medium" AAC_HIGH = "aac-high" FLAC = "flac"