From e86d69e8af67b76a8f27557a2a22f9f97034c9de Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 4 Nov 2025 08:15:03 +0100 Subject: [PATCH] Update. --- Makefile | 2 ++ pr/tools/process_handlers.py | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 74d5870..a0e3cba 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,8 @@ clean: find . -type f -name "*.pyc" -delete build: clean + black . + autoflake --in-place --remove-all-unused-imports --remove-unused-variables --recursive . python -m build publish: build diff --git a/pr/tools/process_handlers.py b/pr/tools/process_handlers.py index fa7d278..2ad5133 100644 --- a/pr/tools/process_handlers.py +++ b/pr/tools/process_handlers.py @@ -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."""