From eef97e4938c7072a7b4f860794231bd425ba5ce6 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 27 Sep 2024 16:53:14 -0700 Subject: [PATCH] fix: remove redundant import of shlex in commands.py --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 68317be9f..d8b663d47 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1,9 +1,9 @@ import os import re +import shlex import subprocess import sys import tempfile -import shlex from collections import OrderedDict from pathlib import Path