style: Apply linter to patch_flex_coder.py

This commit is contained in:
Paul Gauthier (aider) 2025-04-14 15:35:39 -07:00
parent 152b8912ae
commit 134a2d60fe

View file

@ -304,7 +304,10 @@ class PatchFlexCoder(Coder): # Rename class
self.io.tool_warning(f"Delete File target '{path}' not found in chat context.")
parsed_edits.append(
(path, ParsedEdit(path=path, type=ActionType.DELETE, patch_line_num=line_num)) # Wrap in tuple
(
path,
ParsedEdit(path=path, type=ActionType.DELETE, patch_line_num=line_num),
) # Wrap in tuple
)
current_file_path = None # Reset current file context
current_move_path = None
@ -375,7 +378,8 @@ class PatchFlexCoder(Coder): # Rename class
replace_text += "\n"
parsed_edits.append(
(current_file_path, # Add path to tuple
(
current_file_path, # Add path to tuple
ParsedEdit(
path=current_file_path,
type=ActionType.UPDATE,
@ -383,7 +387,8 @@ class PatchFlexCoder(Coder): # Rename class
replace_text=replace_text,
move_path=current_move_path, # Carry over move path for this hunk
patch_line_num=hunk_start_index + 1,
))
),
)
)
index = next_index
continue
@ -457,7 +462,10 @@ class PatchFlexCoder(Coder): # Rename class
final_move_path = None # Track the last move destination for this file
# Check for simple ADD/DELETE first (should ideally be only one per file)
if len(path_edits) == 1 and path_edits[0][1].type in [ActionType.ADD, ActionType.DELETE]:
if len(path_edits) == 1 and path_edits[0][1].type in [
ActionType.ADD,
ActionType.DELETE,
]:
_path, edit = path_edits[0] # Unpack tuple
try:
if edit.type == ActionType.ADD: