chore: apply black formatting to gui_agents (unblock CI)#194
Merged
Conversation
Brings 8 long-unformatted files into compliance with the lint workflow's `black --check gui_agents` step. Pure formatting: AST-identical to before for every touched file. Unblocks CI on main, which has been failing since the first gui_agents push of 2026 hit a build-up of pre-existing debt. Files reformatted: - gui_agents/s1/core/ProceduralMemory.py - gui_agents/s2/agents/worker.py - gui_agents/s2/memory/procedural_memory.py - gui_agents/s2_5/agents/worker.py - gui_agents/s2_5/memory/procedural_memory.py - gui_agents/s3/agents/worker.py - gui_agents/s3/bbon/behavior_narrator.py - gui_agents/s3/memory/procedural_memory.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
black gui_agentsto bring 8 long-unformatted files into compliance with the lint workflow.Why now
The
lintworkflow (black --check gui_agents) only runs when a push/PR touchesgui_agents/**. From mid-January to last night, nomainpush hit that path, so accumulated formatting drift went unnoticed. The firstgui_agents/**push of 2026 (Ollama merge #163) flipped main red, and the subsequent #157 merge stayed red.Files reformatted
gui_agents/s1/core/ProceduralMemory.pygui_agents/s2/agents/worker.pygui_agents/s2/memory/procedural_memory.pygui_agents/s2_5/agents/worker.pygui_agents/s2_5/memory/procedural_memory.pygui_agents/s3/agents/worker.pygui_agents/s3/bbon/behavior_narrator.pygui_agents/s3/memory/procedural_memory.pyTest plan
black --check gui_agentsis green locally (black 26.3.1, same version CI installs).