mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
bugfix
This commit is contained in:
parent
a3075d2da0
commit
27db4c038f
1 changed files with 2 additions and 1 deletions
|
@ -314,7 +314,8 @@ class RepoMap:
|
||||||
|
|
||||||
top_rank = sorted([(rank, node) for (node, rank) in ranked.items()], reverse=True)
|
top_rank = sorted([(rank, node) for (node, rank) in ranked.items()], reverse=True)
|
||||||
for rank, fname in top_rank:
|
for rank, fname in top_rank:
|
||||||
rel_other_fnames_without_tags.remove(fname)
|
if fname in rel_other_fnames_without_tags:
|
||||||
|
rel_other_fnames_without_tags.remove(fname)
|
||||||
if fname not in fnames_already_included:
|
if fname not in fnames_already_included:
|
||||||
ranked_tags.append((fname,))
|
ranked_tags.append((fname,))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue