From 1a50a8cc5e5226daf4b0fb3a527b3ac4cda2e234 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 22 Aug 2024 13:55:52 -0700 Subject: [PATCH] fix: remove unnecessary import in aider/utils.py --- aider/utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/aider/utils.py b/aider/utils.py index 632a3c85f..1301d7960 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -272,9 +272,6 @@ class Spinner: print("\r" + " " * (len(self.text) + 3)) -import os - - def find_common_root(abs_fnames): if len(abs_fnames) == 1: return os.path.dirname(list(abs_fnames)[0])