You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Processing one erroneous song causes a ValueError. Namely, there are too many commas in the bpms, which then get split and end up in empty strings which cannot be split by = and unpacked into two values. Here is one of the errors, it's caused for all charts because it's in the main bpms.
Miss You 0
Traceback (most recent call last):
File "...", line 8, in calculate_statistics
timing_data = TimingData(simfileInstance, simfileInstance.charts[chart])
File "D:\Meatball\venv\lib\site-packages\simfile\timing\__init__.py", line 210, in __init__
self.bpms = BeatValues.from_str(simfile_or_chart.bpms)
File "D:\Meatball\venv\lib\site-packages\simfile\timing\__init__.py", line 174, in from_str
beat, value = row.strip().split("=")
ValueError: not enough values to unpack (expected 2, got 1)
Also, here is the offending part of the file, which is attached below:
Processing one erroneous song causes a ValueError. Namely, there are too many commas in the bpms, which then get split and end up in empty strings which cannot be split by = and unpacked into two values. Here is one of the errors, it's caused for all charts because it's in the main bpms.
Also, here is the offending part of the file, which is attached below:
missyou.zip
The text was updated successfully, but these errors were encountered: