From 320ee06cc3d55e651747d591d9dc2ed9f645bf19 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 25 Jun 2025 11:52:31 -0700 Subject: [PATCH] style: Add trailing commas to improve formatting --- aider/analytics.py | 10 +++++----- aider/args.py | 2 +- aider/main.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/aider/analytics.py b/aider/analytics.py index 59913ccbf..d3d056d80 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -71,11 +71,11 @@ class Analytics: logfile = None def __init__( - self, - logfile=None, - permanently_disable=False, - posthog_host=None, - posthog_project_api_key=None + self, + logfile=None, + permanently_disable=False, + posthog_host=None, + posthog_project_api_key=None, ): self.logfile = logfile self.get_or_create_uuid() diff --git a/aider/args.py b/aider/args.py index 0728d5938..5b3fdf07f 100644 --- a/aider/args.py +++ b/aider/args.py @@ -590,7 +590,7 @@ def get_parser(default_config_files, git_root): group.add_argument( "--analytics-posthog-project-api-key", metavar="ANALYTICS_POSTHOG_PROJECT_API_KEY", - help="Send analytics to custom PostHog project" + help="Send analytics to custom PostHog project", ) ######### diff --git a/aider/main.py b/aider/main.py index 00427cc39..afb3f8366 100644 --- a/aider/main.py +++ b/aider/main.py @@ -637,7 +637,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F logfile=args.analytics_log, permanently_disable=args.analytics_disable, posthog_host=args.analytics_posthog_host, - posthog_project_api_key=args.analytics_posthog_project_api_key + posthog_project_api_key=args.analytics_posthog_project_api_key, ) if args.analytics is not False: if analytics.need_to_ask(args.analytics):