File tree Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -641,12 +641,12 @@ def _format_code_implementation_summary(
641
641
"""
642
642
timestamp = datetime .now ().strftime ("%Y-%m-%d %H:%M:%S" )
643
643
644
- # Create formatted list of implemented files
645
- implemented_files_list = (
646
- "\n " .join ([f"- { file } " for file in self .implemented_files ])
647
- if self .implemented_files
648
- else "- None yet"
649
- )
644
+ # # Create formatted list of implemented files
645
+ # implemented_files_list = (
646
+ # "\n".join([f"- {file}" for file in self.implemented_files])
647
+ # if self.implemented_files
648
+ # else "- None yet"
649
+ # )
650
650
651
651
# formatted_summary = f"""# Code Implementation Summary
652
652
# **All Previously Implemented Files:**
Original file line number Diff line number Diff line change @@ -642,13 +642,6 @@ def _format_code_implementation_summary(
642
642
"""
643
643
timestamp = datetime .now ().strftime ("%Y-%m-%d %H:%M:%S" )
644
644
645
- # Create formatted list of implemented files
646
- implemented_files_list = (
647
- "\n " .join ([f"- { file } " for file in self .implemented_files ])
648
- if self .implemented_files
649
- else "- None yet"
650
- )
651
-
652
645
formatted_summary = f"""# Code Implementation Summary
653
646
**Generated**: { timestamp }
654
647
**File Implemented**: { file_path }
@@ -896,7 +889,6 @@ def create_concise_messages(
896
889
# Get formatted file lists
897
890
file_lists = self .get_formatted_files_lists ()
898
891
implemented_files_list = file_lists ["implemented" ]
899
- unimplemented_files_list = file_lists ["unimplemented" ]
900
892
901
893
# 1. Add initial plan message (always preserved)
902
894
initial_plan_message = {
You can’t perform that action at this time.
0 commit comments