fix: Remove unused map_multiplier_no_files attribute from Coder class

This commit is contained in:
Paul Gauthier 2024-08-20 12:59:54 -07:00 committed by Paul Gauthier (aider)
parent 425dc0b99a
commit fc055a17c1
3 changed files with 3 additions and 5 deletions

View file

@ -106,7 +106,7 @@ class RepoMap:
padding = 4096
if max_map_tokens and self.max_context_window:
target = min(
max_map_tokens * self.map_mul_no_files,
int(max_map_tokens * self.map_mul_no_files),
self.max_context_window - padding,
)
else: