1
0
mirror of synced 2025-02-10 07:58:32 +01:00

Fix linting issues

This commit is contained in:
Viv 2023-07-26 10:17:28 -04:00
parent 7aead6f8ef
commit 740ccbcd31
3 changed files with 4 additions and 4 deletions

View File

@ -225,7 +225,7 @@ def convert_tja_to_fumen(tja):
branch_points_measure = 0 branch_points_measure = 0
for idx_d, data in enumerate(measure_tja.data): for idx_d, data in enumerate(measure_tja.data):
# Compute the ms position of the note # Compute the ms position of the note
pos_ratio = ((data.pos - measure_tja.pos_start) / pos_ratio = ((data.pos - measure_tja.pos_start) /
(measure_tja.pos_end - measure_tja.pos_start)) (measure_tja.pos_end - measure_tja.pos_start))
note_pos = (measure_fumen.duration * pos_ratio) note_pos = (measure_fumen.duration * pos_ratio)