From 7d3585bafe8facee6f8dad4f90ec5f0c3e42b8c5 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 12 Aug 2024 16:11:23 -0700 Subject: [PATCH] style: Fix formatting and linting issues in analytics.py --- aider/analytics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aider/analytics.py b/aider/analytics.py index cd86132d0..4659ee793 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -3,6 +3,7 @@ import uuid from pathlib import Path from mixpanel import Mixpanel + from aider import __version__ @@ -34,5 +35,5 @@ class Analytics: if self.mp: if properties is None: properties = {} - properties['aider_version'] = __version__ + properties["aider_version"] = __version__ self.mp.track(self.user_id, event_name, properties)