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