From e4a238a05c78bf2214243bc815d92c9378a3bde9 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 4 Jan 2025 12:27:11 -0800 Subject: [PATCH] style: Format code with consistent string quotes and remove trailing whitespace --- aider/coders/base_coder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index c4633a705..da975cc1f 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -614,9 +614,9 @@ class Coder: all_fnames = defaultdict(set) for fname in self.get_all_relative_files(): # Skip empty paths or just '.' - if not fname or fname == '.': + if not fname or fname == ".": continue - + try: # Handle dotfiles properly path = Path(fname)