chore(cod_api_tool.py): remove yaml prompt when running in GUI mode

This commit is contained in:
Rim 2025-03-10 09:33:08 -04:00
parent 2612a94948
commit 22a530df01

View File

@ -655,10 +655,10 @@ class CLI:
if choice in [3, 4, 5, 6, 7, 8, 9, 10, 11]: if choice in [3, 4, 5, 6, 7, 8, 9, 10, 11]:
player_name = input("Please enter the player's username (with #1234567): ") player_name = input("Please enter the player's username (with #1234567): ")
convert_to_yaml = input("Convert results to YAML? (y/n): ").lower() == 'y' # convert_to_yaml = input("Convert results to YAML? (y/n): ").lower() == 'y'
delete_json = False # delete_json = False
if convert_to_yaml: # if convert_to_yaml:
delete_json = input("Delete JSON files after conversion? (y/n): ").lower() == 'y' # delete_json = input("Delete JSON files after conversion? (y/n): ").lower() == 'y'
options = { options = {
3: {'all_stats': True}, 3: {'all_stats': True},
@ -673,8 +673,9 @@ class CLI:
} }
if choice in options: if choice in options:
self.stats_manager.fetch_data(player_name=player_name, convert_to_yaml=convert_to_yaml, self.stats_manager.fetch_data(player_name=player_name, **options[choice])
delete_json=delete_json, **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: elif choice == 1:
player_name = input("Enter player name for beautification (leave blank if not player-specific): ") player_name = input("Enter player name for beautification (leave blank if not player-specific): ")