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 (
song
song,
id3_mapping
)
ID3_MAPPING = id3_mapping.Mapping
Song = song.Song
Artist = song.Artist
Source = song.Source

View File

@ -57,3 +57,4 @@ class Mapping(Enum):
ALBUM = "TALB"
ALBUMSORTORDER = "TSOA"
ALBUMARTISTSORTORDER = "TSO2"