moved stuff around

This commit is contained in:
Lars Noack 2023-01-09 14:56:15 +01:00
parent cc77d3ec25
commit 21fca274f8
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,10 @@
from . import ( from . import (
song song,
id3_mapping
) )
ID3_MAPPING = id3_mapping.Mapping
Song = song.Song Song = song.Song
Artist = song.Artist Artist = song.Artist
Source = song.Source Source = song.Source

View File

@ -56,4 +56,5 @@ class Mapping(Enum):
ARTISTSORTORDER = "TSOP" ARTISTSORTORDER = "TSOP"
ALBUM = "TALB" ALBUM = "TALB"
ALBUMSORTORDER = "TSOA" ALBUMSORTORDER = "TSOA"
ALBUMARTISTSORTORDER = "TSO2" ALBUMARTISTSORTORDER = "TSO2"