From 22a530df0120dfc20230e3735f3699349b5cb43d Mon Sep 17 00:00:00 2001 From: Rim Date: Mon, 10 Mar 2025 09:33:08 -0400 Subject: [PATCH] chore(cod_api_tool.py): remove yaml prompt when running in GUI mode --- cod_api_tool.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cod_api_tool.py b/cod_api_tool.py index c6147a3..6e52a6b 100644 --- a/cod_api_tool.py +++ b/cod_api_tool.py @@ -655,10 +655,10 @@ class CLI: if choice in [3, 4, 5, 6, 7, 8, 9, 10, 11]: player_name = input("Please enter the player's username (with #1234567): ") - convert_to_yaml = input("Convert results to YAML? (y/n): ").lower() == 'y' - delete_json = False - if convert_to_yaml: - delete_json = input("Delete JSON files after conversion? (y/n): ").lower() == 'y' + # convert_to_yaml = input("Convert results to YAML? (y/n): ").lower() == 'y' + # delete_json = False + # if convert_to_yaml: + # delete_json = input("Delete JSON files after conversion? (y/n): ").lower() == 'y' options = { 3: {'all_stats': True}, @@ -673,8 +673,9 @@ class CLI: } if choice in options: - self.stats_manager.fetch_data(player_name=player_name, convert_to_yaml=convert_to_yaml, - delete_json=delete_json, **options[choice]) + self.stats_manager.fetch_data(player_name=player_name, **options[choice]) + # self.stats_manager.fetch_data(player_name=player_name, convert_to_yaml=convert_to_yaml, + # delete_json=delete_json, **options[choice]) elif choice == 1: player_name = input("Enter player name for beautification (leave blank if not player-specific): ")