Skip to content

Commit a77af59

Browse files
committed
style: fix linting and formatting
1 parent 238a409 commit a77af59

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

workflows/agents/memory_agent_concise.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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:**

workflows/agents/memory_agent_concise_index.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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 = {

0 commit comments

Comments
 (0)