Fix ordering of fields for Song dataclass

This commit is contained in:
norohind 2024-10-28 11:45:28 +01:00
parent c38cfd293f
commit 4319b53cdb
Signed by: norohind
SSH Key Fingerprint: SHA256:SnI4bWnejM2/YEQ5hpH58TUohiQpnjoKN6tXUQlobE0

View File

@ -6,8 +6,8 @@ from pathlib import Path
@dataclass(frozen=True)
class Song:
id: str
artist: str
track_name: str
artist: str
path: Path