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
在检测skipped_farmes时(~L229),因为按序号删除是由小序号开始的,会导致后面删除的出现错误而报ERROR: id is greater than length of tracks,将for id in del_tracks:改为for id in del_tracks[::-1]:即可