chore: remove trailing whitespace from README.md line 42

This commit is contained in:
retoor 2025-11-04 07:15:03 +00:00
parent 96b85517d3
commit d5d17d7da7
2 changed files with 2 additions and 2 deletions

View File

@ -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

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."""