chore(cod_api_tool.py): remove yaml prompt when running in GUI mode
This commit is contained in:
parent
2612a94948
commit
22a530df01
@ -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): ")
|
||||
|
Loading…
x
Reference in New Issue
Block a user