Fix redundant tick field

This commit is contained in:
2023-03-12 10:54:09 -04:00
parent f6c1a459d4
commit 95b625cec2
31 changed files with 336 additions and 104 deletions

View File

@ -42,7 +42,7 @@ def lookup_album_from_mb(musicbrainz_id: str) -> dict:
{
"title": recording["title"],
"musicbrainz_id": recording["id"],
"run_time_ticks": track["length"],
"run_time": track["length"] / 1000,
}
)