From d33544620c5386f9c2c124b2bc15107db32b22d8 Mon Sep 17 00:00:00 2001 From: Joostlek Date: Thu, 7 Nov 2024 12:39:43 +0100 Subject: [PATCH] Add time signature 1/4 --- src/spotifyaio/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spotifyaio/models.py b/src/spotifyaio/models.py index b91ab4ae..71bb4be2 100644 --- a/src/spotifyaio/models.py +++ b/src/spotifyaio/models.py @@ -569,6 +569,7 @@ class Mode(IntEnum): class TimeSignature(IntEnum): """Time signature of a track.""" + ONE_FOUR = 1 THREE_FOUR = 3 FOUR_FOUR = 4 FIVE_FOUR = 5