From fb1a0dc027fb3010d21ba630ed2b97f10bc30776 Mon Sep 17 00:00:00 2001 From: Thibaud Date: Fri, 31 May 2024 13:30:44 +0200 Subject: [PATCH] Rename frequence_process to better reflect functionality --- frequence_process.py => compare_plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename frequence_process.py => compare_plot.py (95%) 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()