From d59fd508c288cccfb7f16b5ddb5922212b399b4f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 12 Aug 2024 16:16:42 -0700 Subject: [PATCH] style: Apply linter formatting to analytics.py --- aider/analytics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/analytics.py b/aider/analytics.py index 35dfd841b..d2aec21cb 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -36,13 +36,13 @@ class Analytics: if properties is None: properties = {} properties.update(kwargs) - + # Handle numeric values for key, value in properties.items(): if isinstance(value, (int, float)): properties[key] = value else: properties[key] = str(value) - + properties["aider_version"] = __version__ self.mp.track(self.user_id, event_name, properties)