From d507ab9fbcb384e57a12259792c0da2026234eab Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 10 Mar 2025 01:36:22 -0700 Subject: chore: fix some naming --- ongeki/aquadx/ongeki_aquadx_to_tachi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ongeki') diff --git a/ongeki/aquadx/ongeki_aquadx_to_tachi.py b/ongeki/aquadx/ongeki_aquadx_to_tachi.py index 8feee7f..70d7c19 100644 --- a/ongeki/aquadx/ongeki_aquadx_to_tachi.py +++ b/ongeki/aquadx/ongeki_aquadx_to_tachi.py @@ -16,7 +16,7 @@ headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" } -def convert_chuni_aquadx_json_to_tachi_json(input_json: str, output_file: str, service: str, music_json: str): +def convert_from_aquadx_json_to_tachi_json(input_json: str, output_file: str, service: str, music_json: str): if music_json == "online": req = urllib.request.Request(ONGEKI_AQUADX_JSON, headers=headers) with urllib.request.urlopen(req) as response: @@ -124,4 +124,4 @@ if __name__ == "__main__": ) parser.add_argument("--music", "--music-file", help="JSON file containing the mappings of song names to IDs. Check README for moe info", default="online") args = parser.parse_args() - convert_chuni_aquadx_json_to_tachi_json(args.input_file, args.output, args.service, args.music) + convert_from_aquadx_json_to_tachi_json(args.input_file, args.output, args.service, args.music) -- cgit v1.2.3