Python: updated docstrings of all _files (#1107)

* updated docstrings of all _files

* fix mypy

* fixed codeblocks in workflows and some other files

---------

Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
This commit is contained in:
Eduard van Valkenburg
2025-10-02 18:18:58 +02:00
committed by GitHub
Unverified
parent d6c40edbc6
commit 8b80a03fbb
23 changed files with 3098 additions and 819 deletions
+3 -1
View File
@@ -3,6 +3,8 @@ fmt = "ruff format"
format.ref = "fmt"
lint = "ruff check"
pyright = "pyright"
build = "python -m flit build"
publish = "uv publish"
clean-dist = "rm -rf dist"
build-package = "python -m flit build"
move-dist = "sh -c 'mkdir -p ../../dist && mv dist/* ../../dist/ 2>/dev/null || true'"
build = ["build-package", "move-dist"]