From 121dd908a6b2a4a7008bed2078f2966f31cc94f7 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 12 Aug 2024 16:07:12 -0700 Subject: [PATCH] feat: Add Mixpanel project token to Analytics class --- aider/analytics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/analytics.py b/aider/analytics.py index 69ab99699..ffecf9750 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -4,7 +4,7 @@ import json from mixpanel import Mixpanel class Analytics: - def __init__(self, project_token=None): + def __init__(self, project_token="3f9ad6b9d7b7e8e5a1a5a9a7b0b0b0b0"): self.mp = Mixpanel(project_token) if project_token else None self.user_id = self.get_or_create_uuid()