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(
641641 """
642642 timestamp = datetime .now ().strftime ("%Y-%m-%d %H:%M:%S" )
643643
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+ # )
650650
651651 # formatted_summary = f"""# Code Implementation Summary
652652 # **All Previously Implemented Files:**
Original file line number Diff line number Diff line change @@ -642,13 +642,6 @@ def _format_code_implementation_summary(
642642 """
643643 timestamp = datetime .now ().strftime ("%Y-%m-%d %H:%M:%S" )
644644
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-
652645 formatted_summary = f"""# Code Implementation Summary
653646**Generated**: { timestamp }
654647**File Implemented**: { file_path }
@@ -896,7 +889,6 @@ def create_concise_messages(
896889 # Get formatted file lists
897890 file_lists = self .get_formatted_files_lists ()
898891 implemented_files_list = file_lists ["implemented" ]
899- unimplemented_files_list = file_lists ["unimplemented" ]
900892
901893 # 1. Add initial plan message (always preserved)
902894 initial_plan_message = {
You can’t perform that action at this time.
0 commit comments