@@ -687,28 +687,28 @@ def get_parser(default_config_files, git_root):
687687 "--analytics" ,
688688 action = argparse .BooleanOptionalAction ,
689689 default = None ,
690- help = "Enable/disable analytics for current session (default: random)" ,
690+ help = argparse . SUPPRESS ,
691691 )
692692 group .add_argument (
693693 "--analytics-log" ,
694694 metavar = "ANALYTICS_LOG_FILE" ,
695- help = "Specify a file to log analytics events" ,
695+ help = argparse . SUPPRESS ,
696696 ).complete = shtab .FILE
697697 group .add_argument (
698698 "--analytics-disable" ,
699699 action = "store_true" ,
700- help = "Permanently disable analytics" ,
700+ help = argparse . SUPPRESS ,
701701 default = False ,
702702 )
703703 group .add_argument (
704704 "--analytics-posthog-host" ,
705705 metavar = "ANALYTICS_POSTHOG_HOST" ,
706- help = "Send analytics to custom PostHog instance" ,
706+ help = argparse . SUPPRESS ,
707707 )
708708 group .add_argument (
709709 "--analytics-posthog-project-api-key" ,
710710 metavar = "ANALYTICS_POSTHOG_PROJECT_API_KEY" ,
711- help = "Send analytics to custom PostHog project" ,
711+ help = argparse . SUPPRESS ,
712712 )
713713
714714 #########
@@ -775,7 +775,7 @@ def get_parser(default_config_files, git_root):
775775 "--gui" ,
776776 "--browser" ,
777777 action = argparse .BooleanOptionalAction ,
778- help = "Run aider in your browser (default: False)" ,
778+ help = argparse . SUPPRESS ,
779779 default = False ,
780780 )
781781 group .add_argument (
0 commit comments