mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
style: Fix formatting and linting issues in analytics.py
This commit is contained in:
parent
1a49974f98
commit
7d3585bafe
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue