style: Format code with consistent string quotes and remove trailing whitespace

This commit is contained in:
Paul Gauthier (aider) 2025-01-04 12:27:11 -08:00
parent e5ca922ce8
commit e4a238a05c

View file

@ -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)