mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 09:22:55 +01:00
PaddingInt -> PaddingFloat
This commit is contained in:
parent
3f3b102885
commit
7676d2ae5a
1 changed files with 7 additions and 7 deletions
|
|
@ -117,13 +117,13 @@ class AcousticPlugin(plugins.BeetsPlugin):
|
|||
'genre_rosamerica': types.STRING,
|
||||
'initial_key': types.STRING,
|
||||
'key_strength': types.FLOAT,
|
||||
'mood_acoustic': types.PaddedInt(6),
|
||||
'mood_aggressive': types.PaddedInt(6),
|
||||
'mood_electronic': types.PaddedInt(6),
|
||||
'mood_happy': types.PaddedInt(6),
|
||||
'mood_party': types.PaddedInt(6),
|
||||
'mood_relaxed': types.PaddedInt(6),
|
||||
'mood_sad': types.PaddedInt(6),
|
||||
'mood_acoustic': types.PaddedFloat(6),
|
||||
'mood_aggressive': types.PaddedFloat(6),
|
||||
'mood_electronic': types.PaddedFloat(6),
|
||||
'mood_happy': types.PaddedFloat(6),
|
||||
'mood_party': types.PaddedFloat(6),
|
||||
'mood_relaxed': types.PaddedFloat(6),
|
||||
'mood_sad': types.PaddedFloat(6),
|
||||
'rhythm': types.FLOAT,
|
||||
'tonal': types.FLOAT,
|
||||
'voice_instrumental': types.STRING,
|
||||
|
|
|
|||
Loading…
Reference in a new issue