Rename frequence_process to better reflect functionality

This commit is contained in:
Thibaud 2024-05-31 13:30:44 +02:00
parent 8955731742
commit fb1a0dc027
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import sound_process
from tkinter import filedialog as fd from tkinter import filedialog as fd
from matplotlib import pyplot as plt from matplotlib import pyplot as plt
def process_with_map(): def compare_plot():
filename = fd.askopenfilename() filename = fd.askopenfilename()
beatmap = sl.Beatmap.from_path(filename) beatmap = sl.Beatmap.from_path(filename)
timing = beatmap.timing_points[0] timing = beatmap.timing_points[0]
@ -23,7 +23,7 @@ def process_with_map():
plt.show() plt.show()
def main(): def main():
process_with_map() compare_plot()
if __name__ == "__main__": if __name__ == "__main__":
main() main()