From 43c756904ef5c3ff9f278979a89e8ba8f243d105 Mon Sep 17 00:00:00 2001 From: oskvr37 Date: Fri, 7 Feb 2025 19:18:09 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20invalid=20int=20literal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tiddl/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiddl/metadata.py b/tiddl/metadata.py index b06263a..1489945 100644 --- a/tiddl/metadata.py +++ b/tiddl/metadata.py @@ -92,7 +92,7 @@ def addMetadata( "date": str(track.streamStartDate) if track.streamStartDate else "", - "bpm": str(track.bpm or ""), + "bpm": str(track.bpm or 0), } )