diff --git a/frequence_process.py b/compare_plot.py similarity index 95% rename from frequence_process.py rename to compare_plot.py index 079ce1a..2804b4c 100644 --- a/frequence_process.py +++ b/compare_plot.py @@ -3,7 +3,7 @@ import sound_process from tkinter import filedialog as fd from matplotlib import pyplot as plt -def process_with_map(): +def compare_plot(): filename = fd.askopenfilename() beatmap = sl.Beatmap.from_path(filename) timing = beatmap.timing_points[0] @@ -23,7 +23,7 @@ def process_with_map(): plt.show() def main(): - process_with_map() + compare_plot() if __name__ == "__main__": main()