From 4319b53cdbd711a168c75c4c1c42aced6f3b60ad Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:45:28 +0100 Subject: [PATCH] Fix ordering of fields for Song dataclass --- shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared.py b/shared.py index 312c2ac..aca4d7c 100755 --- a/shared.py +++ b/shared.py @@ -6,8 +6,8 @@ from pathlib import Path @dataclass(frozen=True) class Song: id: str - artist: str track_name: str + artist: str path: Path