From 6867dab89c9c08bfd2b2bbc9d00d945bd62f8937 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 31 Oct 2024 10:06:52 -0700 Subject: [PATCH] style: remove trailing whitespace in analytics.py --- aider/analytics.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/analytics.py b/aider/analytics.py index 24105c3f9..95cc8eb38 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -111,7 +111,7 @@ class Analytics: def _redact_model_name(self, model): if not model: return None - + info = model_info_manager.get_model_from_cached_json_db(model.name) if info: return model.name @@ -127,10 +127,10 @@ class Analytics: if main_model: properties["main_model"] = self._redact_model_name(main_model) - + if weak_model: properties["weak_model"] = self._redact_model_name(weak_model) - + if editor_model: properties["editor_model"] = self._redact_model_name(editor_model)