chore: add black formatting and autoflake cleanup to build pipeline and remove redundant pass statements

- Add black and autoflake invocations to the build target in Makefile for automated code formatting and unused import/variable removal
- Remove three redundant `pass` statements from abstract method bodies in ProcessHandler class, as abstract methods with docstrings do not require them
This commit is contained in:
2025-11-04 07:15:03 +00:00
parent d58e2b56f2
commit 91003dbe59
2 changed files with 2 additions and 2 deletions
-2
View File
@@ -14,11 +14,9 @@ class ProcessHandler(ABC):
@abstractmethod
def get_process_type(self):
"""Return the process type this handler manages."""
pass
def update_state(self, output):
"""Update internal state based on output."""
pass
def get_prompt_suggestions(self):
"""Return suggested responses for current state."""