>_
.issue.db
/highway-workflow-engine
Dashboard
Issues
Memory
Lessons
Audit Log
New Issue
Edit Issue #471
Update issue details
Title *
Description
Several files wrap dict.keys() in list() unnecessarily for iteration: 1. engine/tools/parallel_join.py:44 - branch_names = list(fork_task_result['spawned_tasks'].keys()) 2. engine/tools/docker/compose.py:388 - all_services = list(config.get('services', {}).keys()) 3. engine/cli/replay.py:327 - steps = list(replay_data.checkpoints.keys()) 4. engine/tools/secrets.py:452 - 'keys': list(secret_data.keys()) Dict views are directly iterable. list() creates unnecessary copy. FIX: Remove list() wrapper or use tuple() if indexing/slicing needed.
Priority
Low
Medium
High
Critical
Status
Open
In Progress
Closed
Won't Do
Due Date (YYYY-MM-DD)
Tags (comma separated)
Related Issues (IDs)
Enter IDs of issues related to this one. They will be linked as 'related'.
Update Issue
Cancel