diff pytouhou/options.py @ 773:317e93b7d586 default tip

Python: Remove the GTK menu
author Link Mauve <linkmauve@linkmauve.fr>
date Mon, 28 Apr 2025 13:03:20 +0200
parents 7492d384d122
children
line wrap: on
line diff
--- a/pytouhou/options.py
+++ b/pytouhou/options.py
@@ -118,7 +118,6 @@ def parse_arguments(defaults):
     parser.add_argument('-p', '--path', metavar='DIRECTORY', help='Game directory path.')
     parser.add_argument('--debug', action='store_true', help='Set unlimited continues, and perhaps other debug features.')
     parser.add_argument('--verbosity', metavar='VERBOSITY', choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'], help='Select the wanted logging level.')
-    parser.add_argument('--no-menu', action='store_true', help='Disable the menu.')
 
     game_group = parser.add_argument_group('Game options')
     game_group.add_argument('-s', '--stage', metavar='STAGE', type=int, help='Stage, 1 to 7 (Extra), nothing means story mode.')