style: Fix formatting and linting issues in analytics.py

This commit is contained in:
Paul Gauthier (aider) 2024-08-12 16:11:23 -07:00
parent 1a49974f98
commit 7d3585bafe

View file

@ -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)