Skip to content

Commit 3a18a92

Browse files
committed
style: Format code with consistent spacing in comments
1 parent 3e9a6ff commit 3a18a92

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

aider/coders/context_coder.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,29 @@ def reply_completed(self):
1515
if not content or not content.strip():
1616
return True
1717

18-
#dump(repr(content))
18+
# dump(repr(content))
1919
current_rel_fnames = set(self.get_inchat_relative_files())
2020
mentioned_rel_fnames = set(self.get_file_mentions(content, ignore_current=True))
2121

22-
#dump(current_rel_fnames)
23-
#dump(mentioned_rel_fnames)
24-
#dump(current_rel_fnames == mentioned_rel_fnames)
22+
# dump(current_rel_fnames)
23+
# dump(mentioned_rel_fnames)
24+
# dump(current_rel_fnames == mentioned_rel_fnames)
2525

2626
if mentioned_rel_fnames == current_rel_fnames:
2727
return True
2828

29-
if self.num_reflections >= self.max_reflections-1:
29+
if self.num_reflections >= self.max_reflections - 1:
3030
return True
3131

3232
self.abs_fnames = set()
3333
for fname in mentioned_rel_fnames:
3434
self.add_rel_fname(fname)
35-
#dump(self.get_inchat_relative_files())
35+
# dump(self.get_inchat_relative_files())
3636

3737
self.reflected_message = self.gpt_prompts.try_again
3838

39-
#mentioned_idents = self.get_ident_mentions(cur_msg_text)
40-
#if mentioned_idents:
39+
# mentioned_idents = self.get_ident_mentions(cur_msg_text)
40+
# if mentioned_idents:
4141

4242
return True
4343

0 commit comments

Comments
 (0)