Skip to content

Commit 3946154

Browse files
committed
fix for double_dotted_rhythm
1 parent 5bd1a59 commit 3946154

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

musif/extract/features/rhythm/handler.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ def update_score_objects(
139139
]
140140
double_dotted_rhythm.append(part_features[DOUBLE_DOTTEDRHYTHM])
141141

142-
143-
144142
dotted_rhythm = [i for i in dotted_rhythm if i not in (0.0, "NA")]
143+
double_dotted_rhythm = [i for i in double_dotted_rhythm if i not in (0.0, "NA")]
144+
145145
features.update(
146146
{
147147
# get_score_feature(AVERAGE_DURATION): mean(average_durations),

0 commit comments

Comments
 (0)