From 13eaf5e5ce52aac2d5ef45e831bf6780c240a741 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 12 Aug 2024 18:26:11 -0700 Subject: [PATCH] style: Fix formatting in analytics.py --- aider/analytics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/analytics.py b/aider/analytics.py index f2d511d36..d19bc0ceb 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -76,7 +76,7 @@ class Analytics: "event": event_name, "properties": properties, "user_id": self.user_id, - "time": int(time.time()) + "time": int(time.time()), } with open(self.logfile, "a") as f: json.dump(log_entry, f)