Update.
Some checks failed
Tests / test (macos-latest, 3.10) (push) Waiting to run
Tests / test (macos-latest, 3.11) (push) Waiting to run
Tests / test (macos-latest, 3.12) (push) Waiting to run
Tests / test (macos-latest, 3.8) (push) Waiting to run
Tests / test (macos-latest, 3.9) (push) Waiting to run
Tests / test (windows-latest, 3.10) (push) Waiting to run
Tests / test (windows-latest, 3.11) (push) Waiting to run
Tests / test (windows-latest, 3.12) (push) Waiting to run
Tests / test (windows-latest, 3.8) (push) Waiting to run
Tests / test (windows-latest, 3.9) (push) Waiting to run
Lint / lint (push) Failing after 37s
Tests / test (ubuntu-latest, 3.10) (push) Successful in 49s
Tests / test (ubuntu-latest, 3.11) (push) Successful in 44s
Tests / test (ubuntu-latest, 3.12) (push) Successful in 49s
Tests / test (ubuntu-latest, 3.8) (push) Successful in 45s
Tests / test (ubuntu-latest, 3.9) (push) Successful in 41s

This commit is contained in:
retoor 2025-11-04 08:15:03 +01:00
parent 9a5bf46a54
commit e86d69e8af
2 changed files with 2 additions and 2 deletions

View File

@ -50,6 +50,8 @@ clean:
find . -type f -name "*.pyc" -delete find . -type f -name "*.pyc" -delete
build: clean build: clean
black .
autoflake --in-place --remove-all-unused-imports --remove-unused-variables --recursive .
python -m build python -m build
publish: build publish: build

View File

@ -14,11 +14,9 @@ class ProcessHandler(ABC):
@abstractmethod @abstractmethod
def get_process_type(self): def get_process_type(self):
"""Return the process type this handler manages.""" """Return the process type this handler manages."""
pass
def update_state(self, output): def update_state(self, output):
"""Update internal state based on output.""" """Update internal state based on output."""
pass
def get_prompt_suggestions(self): def get_prompt_suggestions(self):
"""Return suggested responses for current state.""" """Return suggested responses for current state."""