From 880ade4f12ee2f55ec6d33bee6f072782318d1d8 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 22 Aug 2024 13:55:36 -0700 Subject: [PATCH] style: Run linter --- aider/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aider/utils.py b/aider/utils.py index ca4d6213d..632a3c85f 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -274,6 +274,7 @@ class Spinner: import os + def find_common_root(abs_fnames): if len(abs_fnames) == 1: return os.path.dirname(list(abs_fnames)[0]) @@ -282,6 +283,7 @@ def find_common_root(abs_fnames): else: return os.getcwd() + def check_pip_install_extra(io, module, prompt, pip_install_cmd): try: __import__(module)